forked from DARPA-ASKEM/sciml-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: cloud builder for multi arch builds (DARPA-ASKEM#163)
- Loading branch information
Showing
3 changed files
with
68 additions
and
67 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
--- | ||
# Automatically build Docker images using a cloud builder and publish them to a | ||
# container registry using HCL Bake file. | ||
|
||
name: Build Docker Images using Cloud Builder | ||
|
||
on: | ||
push: | ||
branches: ['main'] | ||
tags: ['*'] | ||
|
||
jobs: | ||
bake-target: | ||
name: Determine bake target | ||
runs-on: ubuntu-22.04 # don't use the big runners for this small step | ||
outputs: | ||
target: ${{ steps.generate.outputs.bake_target }} | ||
steps: | ||
- name: Determine target | ||
id: generate | ||
run: | | ||
if [[ '${{ github.event_name }}' == 'pull_request' ]]; then | ||
TGT=default | ||
else | ||
TGT=prod | ||
fi | ||
echo "$TGT" | ||
echo "bake_target=${TGT,,}" >> ${GITHUB_OUTPUT} | ||
- name: Show Generated Target | ||
run: echo ${{ steps.generate.outputs.bake_target }} | ||
|
||
# Build and Publish all targets associated with specified group | ||
bake: | ||
needs: | ||
- bake-target | ||
uses: darpa-askem/.github/.github/workflows/bake-publish-cloud-builder.yaml@main | ||
with: | ||
file: 'docker/docker-bake.hcl' | ||
group: ${{ needs.bake-target.outputs.target }} | ||
registry: 'ghcr.io' | ||
organization: ${{ github.repository_owner }} | ||
secrets: | ||
username: ${{ secrets.DOCKER_CLOUD_BUILD_USERNAME }} | ||
token: ${{ secrets.DOCKER_CLOUD_BUILD_TOKEN }} | ||
endpoint: "${{ secrets.DOCKER_CLOUD_BUILD_ENDPOINT }}" | ||
|
||
# Execute simulation-integration reporting | ||
simulation-integration: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- bake | ||
steps: | ||
- name: Report | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GHP_ACCESS_TOKEN }} | ||
run: | | ||
gh workflow run report.yaml --repo DARPA-ASKEM/simulation-integration --ref main | ||
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