Pre-created data dir are now created in cache (also, fix option to git clone full data set) #255
Workflow file for this run
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/C++ CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
name: Build C++ | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, macos-14] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: resursive | |
- uses: maxim-lobanov/setup-xcode@v1 | |
if: matrix.os == 'macos-14' | |
with: | |
xcode-version: '15.1' | |
- name: make | |
run: | | |
cd src/lib | |
make | |