Interflop (#13) #36
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: docker | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ '*' ] | |
release: | |
types: [ published ] | |
jobs: | |
docker-flang: | |
runs-on: ubuntu-22.04 | |
env: | |
TEST_TAG: verificarlo/verificarlo:test | |
LATEST_TAG: ${{ github.repository }}:latest | |
RELEASE_TAG: ${{ github.repository }}:${{ github.ref }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
if: github.event_name == 'release' | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and export to Docker | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
load: true | |
tags: ${{ env.TEST_TAG }} | |
- name: Test | |
run: | | |
docker run --rm ${{ env.TEST_TAG }} /bin/bash -c "make -C /build/verificarlo installcheck" | |
- name: Build and push | |
if: github.event_name == 'release' | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: | | |
${{ env.LATEST_TAG }} | |
${{ env.RELEASE_TAG }} | |
docker: | |
if: github.event_name == 'pull_request' | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu:20.04 | |
llvm: 7 | |
gcc: 7 | |
- os: ubuntu:20.04 | |
llvm: 8 | |
gcc: 7 | |
- os: ubuntu:20.04 | |
llvm: 9 | |
gcc: 7 | |
- os: ubuntu:20.04 | |
llvm: 10 | |
gcc: 7 | |
- os: ubuntu:22.04 | |
llvm: 11 | |
gcc: 9 | |
- os: ubuntu:22.04 | |
llvm: 12 | |
gcc: 9 | |
- os: ubuntu:22.04 | |
llvm: 13 | |
gcc: 9 | |
- os: ubuntu:22.04 | |
llvm: 14 | |
gcc: 9 | |
- os: ubuntu:22.04 | |
llvm: 15 | |
gcc: 9 | |
- os: ubuntu:24.04 | |
llvm: 16 | |
gcc: 9 | |
file: Dockerfile_ubuntu-24.04 | |
runs-on: ubuntu-22.04 | |
env: | |
TEST_TAG: verificarlo/verificarlo:test-llvm-${{ matrix.llvm }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and export to Docker | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
load: true | |
tags: ${{ env.TEST_TAG }} | |
file: ${{ matrix.file || 'Dockerfile' }} | |
build-args: | | |
UBUNTU_VERSION=${{ matrix.os }} | |
LLVM_VERSION=${{ matrix.llvm }} | |
GCC_VERSION=${{ matrix.gcc }} | |
WITH_FLANG= | |
- name: Test | |
run: | | |
docker run --rm ${{ env.TEST_TAG }} /bin/bash -c "make -C /build/verificarlo installcheck" |