RTL Evolution #90
This file contains hidden or 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: RTL Build | |
on: | |
push: | |
branches: [ release ] | |
paths-ignore: | |
- '**/*.md' | |
pull_request: | |
branches: [ release ] | |
paths-ignore: | |
- '**/*.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build (${{ matrix.os }} / ${{ matrix.compiler }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
compiler: [gcc, clang, msvc] | |
exclude: | |
- os: windows-latest | |
compiler: gcc | |
- os: windows-latest | |
compiler: clang | |
- os: ubuntu-latest | |
compiler: msvc | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
# Linux builds | |
- name: Install dependencies (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt update | |
sudo apt install -y ninja-build g++ clang | |
- name: Configure (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
if [ "${{ matrix.compiler }}" = "gcc" ]; then | |
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=g++; | |
else | |
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=clang++; | |
fi | |
# Windows builds (MSVC) | |
- name: Configure (Windows / MSVC) | |
if: runner.os == 'Windows' | |
run: cmake -B build -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=Release | |
# Build | |
- name: Build | |
run: cmake --build build --config Release --parallel | |
# Upload artifacts per compiler | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rtl-test-binaries-${{ matrix.compiler }} | |
path: bin/ |