Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
barne856 committed Jul 28, 2024
1 parent daf33e4 commit 6ee6965
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,18 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Build Docker image
- name: Build Docker image (Linux)
run: |
docker build -t ${{ matrix.compiler }}-${{ matrix.version }} \
--build-arg COMPILER_VERSION=${{ matrix.version }} \
-f dockerfiles/${{ matrix.dockerfile }} .
if: matrix.os == 'ubuntu-latest'

- name: Build Docker image (Windows)
run: |
docker build -t ${{ matrix.compiler }}-${{ matrix.version }} `
--build-arg COMPILER_VERSION=${{ matrix.version }} `
-f dockerfiles/${{ matrix.dockerfile }} .
- name: Build and Test in Docker
run: |
Expand Down

0 comments on commit 6ee6965

Please sign in to comment.