Skip to content

Commit

Permalink
CI: add config macos-arm64 to the automatic build
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-dejoue committed Aug 14, 2023
1 parent 4b706a3 commit 5ae03bd
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,36 +6,43 @@ on:
pull_request:
branches: [ "main" ]

env:
BUILD_TYPE: Debug

jobs:
build:
strategy:
fail-fast: true
matrix:
os: [ ubuntu, macos, windows ]
build_type: [ Debug ]
arch: [ x86_64, arm64]
exclude:
- os: ubuntu
arch: arm64
- os: windows
arch: arm64

runs-on: ${{ matrix.os }}-latest

env:
CMAKE_CONFIG_EXTRA: ${{ matrix.os == 'macos' && format('-DCMAKE_OSX_ARCHITECTURES={0}', matrix.arch) || '' }}

steps:
- uses: actions/checkout@v3

- name: Configure CMake
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} -DPICROSS_BUILD_CLI=ON -DPICROSS_BUILD_TESTS=ON
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DPICROSS_BUILD_CLI=ON -DPICROSS_BUILD_TESTS=ON ${{ env.CMAKE_CONFIG_EXTRA }}

- name: Build
working-directory: ${{ github.workspace }}/build
run: cmake --build . --config ${{ env.BUILD_TYPE }}
run: cmake --build . --config ${{ matrix.build_type }} --verbose

- name: Version
working-directory: ${{ github.workspace }}/build
run: cmake --build . --target picross_cli_version --config ${{ env.BUILD_TYPE }}
run: cmake --build . --target picross_cli_version --config ${{ matrix.build_type }}

- name: Test stdutils
working-directory: ${{ github.workspace }}/build
run: cmake --build . --target run_utests_stdutils --config ${{ env.BUILD_TYPE }}
run: cmake --build . --target run_utests_stdutils --config ${{ matrix.build_type }}

- name: Test picross
working-directory: ${{ github.workspace }}/build
run: cmake --build . --target run_utests_picross --config ${{ env.BUILD_TYPE }}
run: cmake --build . --target run_utests_picross --config ${{ matrix.build_type }}

0 comments on commit 5ae03bd

Please sign in to comment.