Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Build wasm
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: numworks/setup-emscripten@bbc4f5e15974bc13e69fdadecfd1858ecb1c4dbb # there is no v1 tag/branch
- name: Get emscripten version
id: em-version
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
name: Build for Ubuntu
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Compile C++ sources
shell: bash
run: >
Expand All @@ -31,7 +31,7 @@ jobs:
- aarch64
name: Build for macOS ${{ matrix.arch }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Compile C++ sources
shell: bash
run: >
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
disp_arch: arm64
name: Build for Windows ${{ matrix.disp_arch }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ilammy/msvc-dev-cmd@v1.13.0
with:
arch: ${{ matrix.cmd_arch }}
Expand All @@ -85,7 +85,7 @@ jobs:
- build-mac
- build-windows
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: "mkdir artifacts/\n"
- uses: actions/download-artifact@v6
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-cpp-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- aarch64
name: Verify C++ Build with clang on ${{ matrix.arch }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Invoke clang
shell: bash
run: >+
Expand All @@ -37,7 +37,7 @@ jobs:
disp_arch: arm64
name: Verify C++ Build with MSVC on ${{ matrix.disp_arch }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ilammy/msvc-dev-cmd@v1.13.0
with:
arch: ${{ matrix.cmd_arch }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-web-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
name: Lint with JS Tools
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ^22.13
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
name: Verify wasm build
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: numworks/setup-emscripten@bbc4f5e15974bc13e69fdadecfd1858ecb1c4dbb
- uses: actions/setup-node@v6
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
name: Run Unit Tests
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
submodules: true
- name: Compile and run unit tests
Expand All @@ -33,15 +33,15 @@ jobs:
runs-on: ${{ matrix.os }}
name: Run CLI Tests for ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build and run tests
shell: bash
run: "./clitest.sh\n"
cli-tests-windows:
runs-on: windows-latest
name: Run CLI Tests for Windows
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ilammy/msvc-dev-cmd@v1.13.0
- name: Compile C++ sources
shell: pwsh
Expand Down