From a9c6d440ddb35c43d02341e73bc15a669d9f41ec Mon Sep 17 00:00:00 2001 From: Shaun M Reed Date: Tue, 11 Jun 2024 04:13:10 -0400 Subject: [PATCH] Remove GHA REST CI. (#5061) The authentication for GHA REST CI job has expired causing recent failures. REST CI was migrated to GitLab in #4740, so this PR removes running REST CI on GHA. The GHA REST CI job only runs on push (merge) to `dev` or release branches so I merged on my fork to kick off a full CI run without this job to test. https://github.com/shaunrd0/TileDB/actions/runs/9451126638/job/26031334343 [sc-49272] --- TYPE: NO_HISTORY DESC: Remove GHA REST CI. Co-authored-by: KiterLuc <67824247+KiterLuc@users.noreply.github.com> --- .github/workflows/ci-rest.yml | 43 ----------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/ci-rest.yml diff --git a/.github/workflows/ci-rest.yml b/.github/workflows/ci-rest.yml deleted file mode 100644 index 327788a1208..00000000000 --- a/.github/workflows/ci-rest.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: REST CI - -on: - workflow_call: - workflow_dispatch: - inputs: - ref: - type: string - required: false - - push: - branches: - - dev - - release-* - - refs/tags/* - -jobs: - rest-ci: - runs-on: ubuntu-latest - - steps: - # For easy access to lookup dispatched CI job. - - name: Print URL for REST CI actions - run: echo https://github.com/TileDB-Inc/TileDB-Internal/actions - - # If this workflow fails on the remote repository, this CI job will also fail. - - name: Workflow dispatch to REST CI - id: trigger-step - uses: aurelien-baudet/workflow-dispatch@v2 - env: - TILEDB_REST_CI_PAT: ${{ secrets.TILEDB_REST_CI_PAT }} - # Skip if no PAT is set (e.g. for PRs from forks). - if: env.TILEDB_REST_CI_PAT != null - with: - repo: TileDB-Inc/TileDB-Internal - # Trigger workflow on TileDB-Internal at this ref. - ref: "main" - workflow: full-ci.yml - token: ${{ secrets.TILEDB_REST_CI_PAT }} - # Pass TileDB core ref to test against REST. - # github.head_ref will only be set for PRs, so fallback to github.ref_name if triggered via push event. - inputs: '{ "tiledb_ref": "${{ github.event.inputs.ref || github.head_ref || github.ref_name }}"}' - wait-for-completion-timeout: 90m