Rust 1.79 #147
Workflow file for this run
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
name: Test | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
binary: | |
- alisa | |
- elisa | |
- elisheba | |
- elizabeth | |
- isabel | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Log into registry | |
run: echo ${{ secrets.CR_PAT }} | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@master | |
- name: Test | |
run: | | |
IMAGE_ID=ghcr.io/chipp/${{ matrix.binary }} | |
RUST_VERSION=$(cat .rust-version) | |
docker buildx build . --file bin/${{ matrix.binary }}/test.Dockerfile \ | |
--load \ | |
--tag $IMAGE_ID:latest \ | |
--build-arg RUST_VERSION="${RUST_VERSION}" \ | |
--label "org.opencontainers.image.source=https://github.com/${{ github.repository }}" \ | |
--cache-from=type=registry,ref=$IMAGE_ID:test-cache \ | |
--cache-to=type=registry,ref=$IMAGE_ID:test-cache,mode=max | |
docker buildx build . --file bin/${{ matrix.binary }}/Dockerfile \ | |
--load \ | |
--tag $IMAGE_ID:latest \ | |
--build-arg RUST_VERSION="${RUST_VERSION}" \ | |
--label "org.opencontainers.image.source=https://github.com/${{ github.repository }}" \ | |
--cache-from=type=registry,ref=$IMAGE_ID:cache \ | |
--cache-to=type=registry,ref=$IMAGE_ID:cache,mode=max | |
test-isabel-libs: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
build_arch: | |
- arm64 | |
- amd64 | |
host_arch: | |
- arm64 | |
- amd64 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Log into registry | |
run: echo ${{ secrets.CR_PAT }} | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@master | |
- name: Test | |
run: | | |
IMAGE_ID=ghcr.io/chipp/isabel | |
RUST_VERSION=$(cat .rust-version) | |
TEST_TAG=test-cache-libs-${{ matrix.build_arch }}-${{ matrix.host_arch }} | |
docker buildx build . --file bin/isabel/test_libs/${{ matrix.host_arch }}.Dockerfile \ | |
--load \ | |
--platform linux/${{ matrix.build_arch }} \ | |
--build-arg RUST_VERSION="${RUST_VERSION}" \ | |
--cache-from=type=registry,ref=$IMAGE_ID:TEST_TAG \ | |
--cache-to=type=registry,ref=$IMAGE_ID:$TEST_TAG,mode=max |