Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/BachiLi/lajolla_public into…
Browse files Browse the repository at this point in the history
… main
  • Loading branch information
BachiLi committed Jan 8, 2024
2 parents 37b91dc + 62311e8 commit 3d49560
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,27 @@ on:

jobs:
build:

runs-on: ubuntu-latest
name: ${{ matrix.os }}-${{ github.workflow }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: windows-latest
triplet: x64-windows
- os: ubuntu-latest
triplet: x64-linux
- os: macos-latest
triplet: x64-osx

steps:
- uses: actions/checkout@v3
- name: configure
run: mkdir build; cd build; cmake ..
- name: make
run: cd build; make -j
- name: make test
run: cd build; make test
run: cd build; cmake --build . -j -v
- name: macos-test
run: cd build; ./test_filter
#- name: test
# run: cd build; ctest

0 comments on commit 3d49560

Please sign in to comment.