-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move CI invocation from circleci config to actions config (#387)
- Loading branch information
Fil Maj
authored
Nov 28, 2024
1 parent
6eeb604
commit 1c9692c
Showing
2 changed files
with
71 additions
and
69 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# This workflow invokes and waits for the result of Slack's private E2E CI system | ||
name: Internal E2E CI | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
|
||
jobs: | ||
e2e: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the sdk | ||
uses: actions/checkout@v4 | ||
- name: Set environment variables | ||
run: | | ||
# Short name for current branch. For PRs, use source branch (GITHUB_HEAD_REF) | ||
GIT_BRANCH=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} | ||
echo "Identified deno-slack-sdk branch name: ${GIT_BRANCH}; will invoke CI system to test this branch."; | ||
echo "GIT_BRANCH=$GIT_BRANCH" >> $GITHUB_ENV | ||
- name: Kick off platform-devpx-test pipeline | ||
env: | ||
CCI_PAT: ${{ secrets.CCHEN_CIRCLECI_PERSONAL_TOKEN }} | ||
run: | | ||
IMPORT_URL="https://raw.githubusercontent.com/slackapi/deno-slack-sdk/refs/heads/${GIT_BRANCH}/src/"; | ||
echo "Import URL: ${IMPORT_URL}"; | ||
# https://app.circleci.com/settings/organization/github/slackapi/contexts | ||
TEST_PAYLOAD=$(curl --location --request POST 'https://circleci.com/api/v2/project/gh/slackapi/platform-devxp-test/pipeline' \ | ||
--header 'Content-Type: application/json' \ | ||
-u "${CCI_PAT}:" \ | ||
--data "{\"branch\":\"main\",\"parameters\":{\"deno_sdk_import_url\":\"${IMPORT_URL}\"}}") | ||
echo $TEST_PAYLOAD; | ||
TEST_JOB_WORKFLOW_ID=$(echo $TEST_PAYLOAD | jq --raw-output '.id'); | ||
if [ $TEST_JOB_WORKFLOW_ID = "null" ]; then | ||
echo "Problem extracting job ID from invocation API call! Aborting!"; | ||
exit 1; | ||
fi | ||
echo "e2e test workflow started with id: $TEST_JOB_WORKFLOW_ID" | ||
echo "TEST_JOB_WORKFLOW_ID=${TEST_JOB_WORKFLOW_ID}" >> $GITHUB_ENV | ||
- name: Wait for platform-devxp-test E2E run to complete | ||
env: | ||
CCI_PAT: ${{ secrets.CCHEN_CIRCLECI_PERSONAL_TOKEN }} | ||
run: | | ||
E2E_RESULT="{}" | ||
E2E_STATUS="running" | ||
# possible status values: success, running, not_run, failed, error, failing, on_hold, canceled, unauthorized | ||
while [[ $E2E_STATUS != "failed" && $E2E_STATUS != "canceled" && $E2E_STATUS != "success" && $E2E_STATUS != "not_run" && $E2E_STATUS != "error" && $E2E_STATUS != "unauthorized" ]] | ||
do | ||
sleep 30s | ||
echo "Polling test job ${TEST_JOB_WORKFLOW_ID}..." | ||
E2E_RESULT=$(curl --location -sS --request GET "https://circleci.com/api/v2/pipeline/${TEST_JOB_WORKFLOW_ID}/workflow" --header "Circle-Token: ${CCI_PAT}") | ||
echo $E2E_RESULT; | ||
E2E_STATUS=$(echo $E2E_RESULT | jq --raw-output '.items[0].status') | ||
if [ $E2E_STATUS = "null" ]; then | ||
echo "Problem extracting status from workflow API! Aborting!"; | ||
exit 1 | ||
fi | ||
echo "Status is now: $E2E_STATUS" | ||
done | ||
if [ $E2E_STATUS = "failed" ] || [ $E2E_STATUS = "error" ]; then | ||
E2E_PIPE_NUM=$(echo $E2E_RESULT | jq '.items[0].pipeline_number') | ||
E2E_WORKFLOW_ID=$(echo $E2E_RESULT | jq -r '.items[0].id') | ||
CIRCLE_FAIL_LINK="https://app.circleci.com/pipelines/github/slackapi/platform-devxp-test/${E2E_PIPE_NUM}/workflows/${E2E_WORKFLOW_ID}" | ||
echo "Tests failed! Visit $CIRCLE_FAIL_LINK for more info." | ||
exit 1 | ||
elif [ "$E2E_STATUS" = "canceled" ] || [ "$E2E_STATUS" = "unauthorized" ] || [ $E2E_STATUS = "not_run" ]; then | ||
echo "Tests have been ${E2E_STATUS} and did not finish!" | ||
exit 1 | ||
else | ||
echo "Tests passed woot 🎉" | ||
fi |