Updated version. #95
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
name: C++ CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build_with_unittests_linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: submodule | |
run: git submodule init; git submodule update | |
- name: install-sdsl | |
run: ./src/sdsl-lite/install.sh ~ | |
- name: make | |
run: make all-ci-linux | |
- name: tests | |
run: make test-ci-linux | |
build_macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: submodule | |
run: git submodule init; git submodule update | |
- name: install-sdsl | |
run: ./src/sdsl-lite/install.sh ~ | |
- name: make | |
run: make all-ci-macos | |