|
| 1 | +name: Tinybird CI |
| 2 | + |
| 3 | +on: |
| 4 | + pull_request: |
| 5 | + paths: |
| 6 | + - 'services/libs/tinybird/**' |
| 7 | + workflow_dispatch: |
| 8 | + |
| 9 | +env: |
| 10 | + DATA_PROJECT_DIR: services/libs/tinybird |
| 11 | + GIT_DEPTH: 300 |
| 12 | + USE_LAST_PARTITION: true |
| 13 | + |
| 14 | +jobs: |
| 15 | + check: |
| 16 | + name: Datafiles checks |
| 17 | + runs-on: ubuntu-latest |
| 18 | + steps: |
| 19 | + - name: Checkout code |
| 20 | + uses: actions/checkout@v4 |
| 21 | + with: |
| 22 | + fetch-depth: 0 |
| 23 | + |
| 24 | + - name: Install Tinybird CLI |
| 25 | + run: | |
| 26 | + if [ -f "${{ env.DATA_PROJECT_DIR }}/requirements.txt" ]; then |
| 27 | + pip install -r ${{ env.DATA_PROJECT_DIR }}/requirements.txt |
| 28 | + else |
| 29 | + pip install tinybird-cli |
| 30 | + fi |
| 31 | +
|
| 32 | + - name: Get changed files |
| 33 | + id: files |
| 34 | + uses: tj-actions/changed-files@v42 |
| 35 | + with: |
| 36 | + files: | |
| 37 | + **/*.{datasource,incl,pipe} |
| 38 | +
|
| 39 | + - name: Check formatting |
| 40 | + if: ${{ steps.files.outputs.any_changed == 'true' }} |
| 41 | + shell: bash |
| 42 | + run: | |
| 43 | + for file in ${{ steps.files.outputs.all_changed_files }}; do |
| 44 | + tb fmt --diff "$file" |
| 45 | + done |
| 46 | +
|
| 47 | + deploy: |
| 48 | + name: Deploy to CI Branch |
| 49 | + runs-on: ubuntu-latest |
| 50 | + defaults: |
| 51 | + run: |
| 52 | + working-directory: ${{ env.DATA_PROJECT_DIR }} |
| 53 | + steps: |
| 54 | + - uses: actions/checkout@v4 |
| 55 | + with: |
| 56 | + fetch-depth: ${{ env.GIT_DEPTH }} |
| 57 | + ref: ${{ github.event.pull_request.head.sha }} |
| 58 | + |
| 59 | + - uses: actions/setup-python@v5 |
| 60 | + with: |
| 61 | + python-version: "3.11" |
| 62 | + architecture: "x64" |
| 63 | + cache: pip |
| 64 | + |
| 65 | + - name: Set environment variables |
| 66 | + run: | |
| 67 | + _ENV_FLAGS="${{ env.USE_LAST_PARTITION == 'true' && '--last-partition ' || '' }}--wait" |
| 68 | + _NORMALIZED_BRANCH_NAME=$(echo $DATA_PROJECT_DIR | rev | cut -d "/" -f 1 | rev | tr '.-' '_') |
| 69 | + GIT_BRANCH=${GITHUB_HEAD_REF} |
| 70 | + echo "GIT_BRANCH=$GIT_BRANCH" >> $GITHUB_ENV |
| 71 | + echo "_ENV_FLAGS=$_ENV_FLAGS" >> $GITHUB_ENV |
| 72 | + echo "_NORMALIZED_BRANCH_NAME=$_NORMALIZED_BRANCH_NAME" >> $GITHUB_ENV |
| 73 | + if [ -f .tinyenv ]; then grep -v '^#' .tinyenv >> $GITHUB_ENV; fi |
| 74 | + echo >> $GITHUB_ENV |
| 75 | +
|
| 76 | + - name: Install Tinybird CLI |
| 77 | + run: | |
| 78 | + if [ -f "requirements.txt" ]; then |
| 79 | + pip install -r requirements.txt |
| 80 | + else |
| 81 | + pip install tinybird-cli |
| 82 | + fi |
| 83 | +
|
| 84 | + - name: Tinybird version |
| 85 | + run: tb --version |
| 86 | + |
| 87 | + - name: Check all the data files syntax |
| 88 | + run: tb check |
| 89 | + |
| 90 | + - name: Check auth |
| 91 | + run: tb --host ${{ secrets.TB_HOST }} --token ${{ secrets.TB_ADMIN_TOKEN }} auth info |
| 92 | + |
| 93 | + - name: Try delete previous Branch |
| 94 | + run: | |
| 95 | + output=$(tb --host ${{ secrets.TB_HOST }} --token ${{ secrets.TB_ADMIN_TOKEN }} branch ls) |
| 96 | + BRANCH_NAME="tmp_ci_${_NORMALIZED_BRANCH_NAME}_${{ github.event.pull_request.number }}" |
| 97 | + if echo "$output" | grep -q "\b$BRANCH_NAME\b"; then |
| 98 | + tb --host ${{ secrets.TB_HOST }} --token ${{ secrets.TB_ADMIN_TOKEN }} branch rm $BRANCH_NAME --yes |
| 99 | + else |
| 100 | + echo "Skipping clean up: The Branch '$BRANCH_NAME' does not exist." |
| 101 | + fi |
| 102 | +
|
| 103 | + - name: Create new test Branch |
| 104 | + run: | |
| 105 | + tb \ |
| 106 | + --host ${{ secrets.TB_HOST }} \ |
| 107 | + --token ${{ secrets.TB_ADMIN_TOKEN }} \ |
| 108 | + branch create tmp_ci_${_NORMALIZED_BRANCH_NAME}_${{ github.event.pull_request.number }} \ |
| 109 | + ${_ENV_FLAGS} |
| 110 | +
|
| 111 | + - name: Deploy changes to the test Branch |
| 112 | + run: | |
| 113 | + source .tinyenv || true |
| 114 | + DEPLOY_FILE=./deploy/${VERSION}/deploy.sh |
| 115 | + if [ ! -f "$DEPLOY_FILE" ]; then |
| 116 | + echo "$DEPLOY_FILE not found, running default tb deploy command" |
| 117 | + tb deploy ${CI_FLAGS} |
| 118 | + tb release ls |
| 119 | + fi |
| 120 | +
|
| 121 | + - name: Custom deployment to the test Branch |
| 122 | + run: | |
| 123 | + source .tinyenv || true |
| 124 | + DEPLOY_FILE=./deploy/${VERSION}/deploy.sh |
| 125 | + if [ -f "$DEPLOY_FILE" ]; then |
| 126 | + echo "$DEPLOY_FILE found" |
| 127 | + if ! [ -x "$DEPLOY_FILE" ]; then |
| 128 | + echo "Error: You do not have permission to execute '$DEPLOY_FILE'. Run:" |
| 129 | + echo "> chmod +x $DEPLOY_FILE" |
| 130 | + echo "and commit your changes" |
| 131 | + exit 1 |
| 132 | + else |
| 133 | + $DEPLOY_FILE |
| 134 | + fi |
| 135 | + fi |
| 136 | +
|
| 137 | + test: |
| 138 | + name: Run tests |
| 139 | + runs-on: ubuntu-latest |
| 140 | + needs: |
| 141 | + - deploy |
| 142 | + defaults: |
| 143 | + run: |
| 144 | + working-directory: ${{ env.DATA_PROJECT_DIR }} |
| 145 | + steps: |
| 146 | + - uses: actions/checkout@v4 |
| 147 | + with: |
| 148 | + fetch-depth: 0 |
| 149 | + ref: ${{ github.event.pull_request.head.sha }} |
| 150 | + |
| 151 | + - uses: actions/setup-python@v5 |
| 152 | + with: |
| 153 | + python-version: "3.11" |
| 154 | + architecture: "x64" |
| 155 | + cache: pip |
| 156 | + |
| 157 | + - name: Set environment variables |
| 158 | + run: | |
| 159 | + _ENV_FLAGS="--last-partition --wait" |
| 160 | + _NORMALIZED_BRANCH_NAME=$(echo $DATA_PROJECT_DIR | rev | cut -d "/" -f 1 | rev | tr '.-' '_') |
| 161 | + GIT_BRANCH=${GITHUB_HEAD_REF} |
| 162 | + echo "GIT_BRANCH=$GIT_BRANCH" >> $GITHUB_ENV |
| 163 | + echo "_ENV_FLAGS=$_ENV_FLAGS" >> $GITHUB_ENV |
| 164 | + echo "_NORMALIZED_BRANCH_NAME=$_NORMALIZED_BRANCH_NAME" >> $GITHUB_ENV |
| 165 | + if [ -f .tinyenv ]; then grep -v '^#' .tinyenv >> $GITHUB_ENV; fi |
| 166 | + echo >> $GITHUB_ENV |
| 167 | +
|
| 168 | + - name: Install Tinybird CLI |
| 169 | + run: | |
| 170 | + if [ -f "requirements.txt" ]; then |
| 171 | + pip install -r requirements.txt |
| 172 | + else |
| 173 | + pip install tinybird-cli |
| 174 | + fi |
| 175 | +
|
| 176 | + - name: Tinybird version |
| 177 | + run: tb --version |
| 178 | + |
| 179 | + - name: Check auth |
| 180 | + run: tb --host ${{ secrets.TB_HOST }} --token ${{ secrets.TB_ADMIN_TOKEN }} auth info |
| 181 | + |
| 182 | + - name: Use Branch |
| 183 | + run: | |
| 184 | + BRANCH_NAME="tmp_ci_${_NORMALIZED_BRANCH_NAME}_${{ github.event.pull_request.number }}" |
| 185 | + tb --host ${{ secrets.TB_HOST }} --token ${{ secrets.TB_ADMIN_TOKEN }} branch use $BRANCH_NAME |
| 186 | +
|
| 187 | + - name: Post deploy |
| 188 | + run: | |
| 189 | + POSTDEPLOY_FILE=./deploy/${VERSION}/postdeploy.sh |
| 190 | + if [ -f "$POSTDEPLOY_FILE" ]; then |
| 191 | + if ! [ -x "$POSTDEPLOY_FILE" ]; then |
| 192 | + echo "Error: You do not have permission to execute '$POSTDEPLOY_FILE'. Run:" |
| 193 | + echo "> chmod +x $POSTDEPLOY_FILE" |
| 194 | + echo "and commit your changes" |
| 195 | + exit 1 |
| 196 | + else |
| 197 | + $POSTDEPLOY_FILE |
| 198 | + fi |
| 199 | + fi |
| 200 | +
|
| 201 | + - name: Get regression labels |
| 202 | + id: regression_labels |
| 203 | + |
| 204 | + with: |
| 205 | + github_token: ${{ secrets.GITHUB_TOKEN }} |
| 206 | + label_key: regression |
| 207 | + |
| 208 | + - name: Run pipe regression tests |
| 209 | + run: | |
| 210 | + source .tinyenv || true |
| 211 | + echo ${{ steps.regression_labels.outputs.labels }} |
| 212 | + REGRESSION_LABELS=$(echo "${{ steps.regression_labels.outputs.labels }}" | awk -F, '{for (i=1; i<=NF; i++) if ($i ~ /^--/) print $i}' ORS=',' | sed 's/,$//') |
| 213 | + echo "Regression labels: ${REGRESSION_LABELS}" |
| 214 | +
|
| 215 | + CONFIG_FILE=./tests/regression.yaml |
| 216 | + BASE_CMD="tb branch regression-tests" |
| 217 | + LABELS_CMD="$(echo ${REGRESSION_LABELS} | tr , ' ')" |
| 218 | + if [ -f ${CONFIG_FILE} ]; then |
| 219 | + echo "Config file '${CONFIG_FILE}' found, adding pull request labels as options" |
| 220 | + ${BASE_CMD} -f ${CONFIG_FILE} --wait ${LABELS_CMD} |
| 221 | + else |
| 222 | + echo "Config file not found at '${CONFIG_FILE}', running with default values" |
| 223 | + ${BASE_CMD} coverage --wait ${LABELS_CMD} |
| 224 | + fi |
0 commit comments