This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
Updates. #110
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 Compose Actions Workflow | |
on: push | |
jobs: | |
GCC: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build with gcc 8 | |
run: docker-compose run --rm build_gcc_8 | |
- name: Build with gcc 9 | |
run: docker-compose run --rm build_gcc_9 | |
- name: Build with gcc 10 | |
run: docker-compose run --rm build_gcc_10 | |
- name: Build with gcc 11 | |
run: docker-compose run --rm build_gcc_11 | |
- name: Build with gcc 12 | |
run: docker-compose run --rm build_gcc_12 | |
CLANG: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build with clang 5 | |
run: docker-compose run --rm build_clang_5 | |
- name: Build with clang 6 | |
run: docker-compose run --rm build_clang_6 | |
# - name: Build with clang 7 | |
# run: docker-compose run --rm build_clang_7 | |
# - name: Build with clang 8 | |
# run: docker-compose run --rm build_clang_8 | |
# - name: Build with clang 9 | |
# run: docker-compose run --rm build_clang_9 | |
# - name: Build with clang 10 | |
# run: docker-compose run --rm build_clang_10 | |
- name: Build with clang 11 | |
run: docker-compose run --rm build_clang_11 | |
- name: Build with clang 12 | |
run: docker-compose run --rm build_clang_12 | |
- name: Build with clang 13 | |
run: docker-compose run --rm build_clang_13 | |
- name: Build with clang 14 | |
run: docker-compose run --rm build_clang_14 |