-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update libsodium submodule, bump kotlin versions, switch to github actions
- Loading branch information
Showing
9 changed files
with
87 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
name: Build project and push to maven snapshot | ||
run-name: ${{ github.actor }} after merge | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
env: | ||
CHROME_BIN: "chromium" | ||
|
||
jobs: | ||
Build-And-Push-Linux: | ||
runs-on: [self-hosted, Linux, x64] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: 'true' | ||
- run: ./linuxBuildAndPublish.sh | ||
Build-And-Push-Mac: | ||
runs-on: [self-hosted, macOS, ARM64] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: 'true' | ||
- run: | | ||
./macBuild.sh | ||
./macBuildAndPublishSnapshot-bindings.sh | ||
Build-And-Push-Windows: | ||
runs-on: [self-hosted, Windows, x64] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: 'true' | ||
- name: Build | ||
run: | | ||
$env:CHERE_INVOKING = 'yes' | ||
C:\msys64\usr\bin\bash -lc "./windowsBuildAndPublish-delegated.sh" |
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,34 @@ | ||
|
||
name: Build project and run tests | ||
run-name: ${{ github.actor }} pull request | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
env: | ||
CHROME_BIN: "chromium" | ||
jobs: | ||
Build-And-Test-Linux: | ||
runs-on: [self-hosted, Linux, x64] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: 'true' | ||
- run: ./linuxBuild.sh | ||
Build-And-Test-Mac: | ||
runs-on: [self-hosted, macOS, ARM64] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: 'true' | ||
- run: ./macBuild.sh | ||
Build-And-Test-Windows: | ||
runs-on: [self-hosted, Windows, x64] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: 'true' | ||
- run: | | ||
$env:CHERE_INVOKING = 'yes' | ||
C:\msys64\usr\bin\bash -lc "./windowsBuild-delegated.sh" |
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 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 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 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 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 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
Submodule libsodium
updated
44 files