-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
96 additions
and
21 deletions.
There are no files selected for viewing
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
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,61 @@ | ||
name: Build and push docker images | ||
|
||
on: | ||
push: | ||
branches: | ||
- feature/cci-api-2 | ||
|
||
jobs: | ||
circleci-k8s-test-build: | ||
name: Test released images | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
project: [ | ||
{org: "wunderio", repo: "drupal-project-k8s", branch: "master"}, | ||
{org: "wunderio", repo: "frontend-project-k8s", branch: "master"}, | ||
{org: "wunderio", repo: "simple-project-k8s", branch: "master"} | ||
] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Validate released images with ${{ matrix.project.repo }} | ||
run: | | ||
REPO_NAME="${{ matrix.project.repo }}" | ||
ORG_NAME="${{ matrix.project.org }}" | ||
BRANCH_NAME="${{ matrix.project.branch }}" | ||
CIRCLECI_DEV_API_TOKEN_B64=$(echo -n "${{ secrets.CIRCLECI_DEV_API_TOKEN }}:" | base64) | ||
if [ -z "${{ secrets.CIRCLECI_DEV_API_TOKEN }}" ]; then | ||
echo "Repository secrets is missing CIRCLECI_DEV_API_TOKEN variable." | ||
exit 1 | ||
fi | ||
echo "Running ${ORG_NAME}/${REPO_NAME}/${BRANCH_NAME} build on CircleCI" | ||
echo "Project link: https://app.circleci.com/pipelines/github/${ORG_NAME}/${REPO_NAME}?branch=${BRANCH_NAME}" | ||
# Trigger a new pipeline | ||
PIPELINE_ID=$(curl --request POST \ | ||
--url "https://circleci.com/api/v2/project/gh/wunderio/${REPO_NAME}/pipeline" \ | ||
--header "content-type: application/json" \ | ||
--data "{\"branch\":\"${BRANCH_NAME}\"}" \ | ||
--header "authorization: Basic ${CIRCLECI_DEV_API_TOKEN_B64}" --silent | jq -r '.id') | ||
echo "Pipeline ID: ${PIPELINE_ID}" | ||
sleep 10 | ||
# Wait for pipeline to be complete | ||
while true; do | ||
PIPELINE_STATUS=$(curl --request GET \ | ||
--url "https://circleci.com/api/v2/pipeline/${PIPELINE_ID}/workflow" \ | ||
--header "authorization: Basic ${CIRCLECI_DEV_API_TOKEN_B64}" --silent | jq -r '.items[0].status') | ||
if [ "${PIPELINE_STATUS}" = "success" ]; then | ||
echo "Pipeline completed successfully" | ||
break | ||
elif [ "${PIPELINE_STATUS}" != "created" ] && [ "${PIPELINE_STATUS}" != "running" ] && [ "${PIPELINE_STATUS}" != "null" ]; then | ||
echo "Pipeline status: ${PIPELINE_STATUS}, failing the test" | ||
exit 1 | ||
fi | ||
echo "still running, status: ${PIPELINE_STATUS}" | ||
sleep 10 | ||
done |