-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
cmake-fetch
for dependencies (#208)
* Use `cmake-fetch` for dependencies * Use `stable` branch * Use prebuilt version header * Copy `version.h` to expected path and quote all paths * Quote include directories as well * Update test workflow * Find `libsodium` sources via globbing
- Loading branch information
1 parent
ea18b99
commit 4b664c3
Showing
9 changed files
with
51 additions
and
349 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Test | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
include: | ||
- os: ubuntu-latest | ||
platform: linux | ||
arch: x64 | ||
- os: macos-latest | ||
platform: darwin | ||
arch: arm64 | ||
- os: windows-latest | ||
platform: win32 | ||
arch: x64 | ||
runs-on: ${{ matrix.os }} | ||
name: ${{ matrix.platform }}-${{ matrix.arch }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: lts/* | ||
- run: choco upgrade llvm | ||
if: ${{ matrix.platform == 'win32' }} | ||
- run: npm install -g bare-make | ||
- run: npm install | ||
- run: bare-make generate --platform ${{ matrix.platform }} --arch ${{ matrix.arch }} --debug | ||
- run: bare-make build | ||
- run: bare-make install | ||
- run: npm test |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Submodule libsodium
deleted from
8855e8