Fix for packages for GL on darwin #127
Workflow file for this run
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
| # See https://github.com/lukka/CppCMakeVcpkgTemplate/tree/v11 | |
| name: Continuous Integration | |
| description: CI workflow for building DynamO and running the unit tests | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| nix-build: | |
| name: ${{ matrix.os }}-${{ github.workflow }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-22.04, ubuntu-24.04] #windows-2022, macos-15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| with: | |
| nix_path: nixpkgs=channel:nixos-24.11 | |
| extra_nix_config: | | |
| experimental-features = nix-command flakes | |
| allow-import-from-derivation = true | |
| sandbox = false | |
| - name: Build the nix package | |
| run: nix-build | |
| hand-build: | |
| name: ${{ matrix.os }}-${{ github.workflow }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-22.04, ubuntu-24.04] #windows-2022, macos-15 | |
| steps: | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| with: | |
| nix_path: nixpkgs=channel:nixos-24.11 | |
| extra_nix_config: | | |
| experimental-features = nix-command flakes | |
| allow-import-from-derivation = true | |
| sandbox = false | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Configure the project | |
| run: nix-shell ${{github.workspace}} --run "cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release" | |
| - name: Build the project | |
| run: nix-shell ${{github.workspace}} --run "cmake --build ${{github.workspace}}/build -j4 --config Release" | |
| - name: Check code formatting | |
| run: nix-shell ${{github.workspace}} --run "cmake --build ${{github.workspace}}/build -j4 -t check-src-format --config Release" | |
| # Test the whole project with CTest | |
| - name: Test (Release configuration) | |
| working-directory: ${{github.workspace}}/build | |
| run: nix-shell ${{github.workspace}} --run "ctest -j 4 --output-on-failure -C Release" |