first draft of updating documentation of custom geant4 #283
Workflow file for this run
This file contains hidden or 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
name: CI | |
on: | |
push: | |
paths-ignore: | |
- 'README.md' | |
- 'docs/**' | |
- 'LICENSE' | |
- '.gitignore' | |
- '.github/ISSUE_TEMPLATE/**' | |
- '.github/PULL_REQUEST_TEMPLATE.md' | |
- '.github/workflows/mdbook.yml' | |
- '.github/workflows/ldmx-sw-dependabot.yml' | |
- '.github/workflows/README.md' | |
- '.github/install-mdbook' | |
branches: | |
- "**" | |
tags: | |
- "**" | |
env: | |
REGISTRY_IMAGE: ldmx/dev | |
jobs: | |
build: | |
runs-on: self-hosted | |
timeout-minutes: 43200 | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- amd64 | |
- arm64 | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY_IMAGE }} | |
tags: | | |
type=ref,event=branch | |
type=ref,event=pr | |
type=semver,pattern=v{{version}} | |
type=sha,format=short | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- | |
name: Build and push by digest | |
id: build | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
cache-from: type=registry,ref=ldmx/dev:build-cache-${{ matrix.platform }} | |
cache-to: type=registry,ref=ldmx/dev:build-cache-${{ matrix.platform }},mode=max | |
platforms: linux/${{ matrix.platform }} | |
labels: ${{ steps.meta.outputs.labels }} | |
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true | |
- | |
name: Export digest | |
id: export-digest | |
run: | | |
mkdir digest | |
digest="${{ steps.build.outputs.digest }}" | |
digest_name="digest-${{ matrix.platform }}" | |
digest_file="digest/${digest#sha256:}" | |
touch "${digest_file}" | |
echo "name=${digest_name}" >> "$GITHUB_OUTPUT" | |
echo "file=${digest_file}" >> "$GITHUB_OUTPUT" | |
- | |
name: Upload digest | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ steps.export-digest.outputs.name }} | |
path: ${{ steps.export-digest.outputs.file }} | |
if-no-files-found: error | |
merge: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
outputs: | |
imagejson: ${{ steps.meta.outputs.json }} | |
steps: | |
- | |
name: Download digests | |
uses: actions/download-artifact@v4 | |
with: | |
path: digests | |
pattern: digest-* | |
merge-multiple: true | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY_IMAGE }} | |
tags: | | |
type=ref,event=branch | |
type=ref,event=pr | |
type=semver,pattern=v{{version}} | |
type=sha,format=short | |
- | |
name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- | |
name: Create manifest list and push | |
working-directory: digests | |
run: | | |
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ | |
$(find -type f -exec basename {} ';' | xargs printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ') | |
- | |
name: Inspect image | |
run: | | |
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }} | |
list-ldmx-sw-to-test: | |
name: List ldmx-sw Versions to Test | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{steps.read_json.outputs.matrix}} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: read_json | |
run: echo "matrix=$(jq -c . ci/ldmx-sw-to-test.json)" >> $GITHUB_OUTPUT | |
test: | |
needs: | |
- list-ldmx-sw-to-test | |
- merge | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: ${{fromJSON(needs.list-ldmx-sw-to-test.outputs.matrix)}} | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- | |
name: Download Build Context for Test Script | |
uses: actions/checkout@v4 | |
- | |
name: Install just | |
uses: extractions/setup-just@v3 | |
with: | |
just-version: 1.26.0 | |
- | |
name: Test the Image | |
run: ./ci/test-ldmx-sw $(echo '${{ needs.merge.outputs.imagejson }}' | jq -r .tags[0]) ${{ matrix.ldmx_sw }} |