-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start splitting the tasks into separate workflows
- Loading branch information
1 parent
6478e56
commit 12239e7
Showing
2 changed files
with
95 additions
and
62 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
# Continuous Integration tests | ||
name: GCC Build | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the main branch | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
|
||
# Ensure that only one instance of the workflow is run at a time for each branch/tag. | ||
# Jobs currently running on the branch/tag will be cancelled when new commits are pushed. | ||
# See https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#concurrency. | ||
concurrency: | ||
# `github.workflow` is the workflow name, `github.ref` is the current branch/tag identifier | ||
group: ${{ format('{0}:{1}', github.workflow, github.ref) }} | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
build-linux: | ||
name: Linux GCC | ||
|
||
strategy: | ||
matrix: | ||
toolchain: | ||
- { container: ubuntu:22.04, version: 13 } | ||
- { container: ubuntu:22.04, version: 12 } | ||
- { container: ubuntu:22.04, version: 11 } | ||
- { container: ubuntu:22.04, version: 10 } | ||
- { container: ubuntu:22.04, version: 9 } | ||
- { container: ubuntu:20.04, version: 8 } | ||
- { container: ubuntu:20.04, version: 7 } | ||
- { container: ubuntu:18.04, version: 8 } | ||
- { container: ubuntu:18.04, version: 7 } | ||
|
||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
|
||
# Use the container for this specific version of gcc | ||
container: ${{ matrix.toolchain.container }} | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
|
||
# Download and install the targeted version of gcc | ||
- name: Install GCC | ||
uses: egor-tensin/setup-gcc@v1 | ||
with: | ||
version: ${{ matrix.toolchain.version }} | ||
|
||
# Download and install cmake | ||
- name: Install CMake | ||
uses: lukka/get-cmake@latest | ||
with: | ||
cmakeVersion: 3.27.1 | ||
ninjaVersion: 1.11.1 | ||
|
||
# Download and setup ccache | ||
- run: apt update # Docker container needs to update first | ||
- name: Setup CCache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ${{ github.job }}-${{ matrix.container }} | ||
- name: Zero CCache Stats | ||
run: ccache --zero-stats | ||
|
||
- name: Configure CMake | ||
run: | | ||
cmake -E make_directory build | ||
cmake -S . -B build \ | ||
-DBUILD_TESTS=ON \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCI_BUILD=ON \ | ||
-DCLANG_TIDY=OFF \ | ||
-DCMAKE_C_COMPILER_LAUNCHER=ccache \ | ||
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache | ||
- name: Build | ||
timeout-minutes: 30 | ||
run: cmake --build build --config Release --parallel 2 | ||
|
||
- name: CCache Stats | ||
run: ccache --show-stats | ||
|
||
- name: Test | ||
timeout-minutes: 10 | ||
# Execute tests defined by the CMake configuration. | ||
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | ||
run: | | ||
build/tests/test_nuclear | ||
for f in build/tests/individual/*; do echo "Testing $f"; ./$f; done |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,68 +19,6 @@ concurrency: | |
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
build-linux: | ||
name: Linux GCC | ||
|
||
strategy: | ||
matrix: | ||
container: | ||
["gcc:5", "gcc:7", "gcc:9", "gcc:10", "gcc:11", "gcc:12", "gcc:13"] | ||
|
||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
|
||
# Use the container for this specific version of gcc | ||
container: ${{ matrix.container }} | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
|
||
# Download and install cmake | ||
- name: Install CMake | ||
uses: lukka/get-cmake@latest | ||
with: | ||
cmakeVersion: 3.27.1 | ||
ninjaVersion: 1.11.1 | ||
|
||
# Download and setup ccache | ||
- run: apt update # Docker container needs to update first | ||
- name: Setup CCache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ${{ github.job }}-${{ matrix.container }} | ||
- name: Zero CCache Stats | ||
run: ccache --zero-stats | ||
|
||
- name: Configure CMake | ||
run: | | ||
cmake -E make_directory build | ||
cmake -S . -B build \ | ||
-DBUILD_TESTS=ON \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCI_BUILD=ON \ | ||
-DCLANG_TIDY=OFF \ | ||
-DCMAKE_C_COMPILER_LAUNCHER=ccache \ | ||
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache | ||
- name: Build | ||
timeout-minutes: 30 | ||
# Execute the build. You can specify a specific target with "--target <NAME>" | ||
run: cmake --build build --config Release --parallel 2 | ||
|
||
- name: CCache Stats | ||
run: ccache --show-stats | ||
|
||
- name: Test | ||
timeout-minutes: 10 | ||
# Execute tests defined by the CMake configuration. | ||
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | ||
run: | | ||
build/tests/test_nuclear | ||
for f in build/tests/individual/*; do echo "Testing $f"; ./$f; done | ||
build-osx: | ||
name: MacOS Clang | ||
runs-on: macos-latest | ||
|