Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #192

Draft
wants to merge 15 commits into
base: master
Choose a base branch
from
21 changes: 18 additions & 3 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,32 @@ jobs:
runs-on: ${{ matrix.os.host }}
strategy:
matrix:
node: [14, 16, 18]
node: [16]
build_type: ["debug", "release"]
os:
- name: darwin
architecture: x86-64
host: macos-10.15
host: macos-11
env:
CC: "clang"
CXX: "clang++"

- name: linux
architecture: x86-64
host: ubuntu-20.04

name: ${{ matrix.os.name }}-${{ matrix.os.architecture }}-node${{ matrix.node }}-${{ matrix.build_type }} test
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

- uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Test
run: |
npm ci
Expand Down Expand Up @@ -92,7 +100,10 @@ jobs:
os:
- name: darwin
architecture: x86-64
host: macos-10.15
host: macos-11
env:
CC: "clang"
CXX: "clang++"

- name: linux
architecture: x86-64
Expand All @@ -104,6 +115,10 @@ jobs:
with:
node-version: "16"

- uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Build
run: |
./scripts/setup.sh --config local.env
Expand Down
124 changes: 64 additions & 60 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading