Bump dep versions and maintenance (#130) #133
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: Release Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
release-build: | |
name: Release Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ | |
ubuntu-latest, | |
macos-latest, | |
windows-latest, | |
] | |
toolchain: [ | |
stable, | |
"1.77.2", # Check the version used by Holochain | |
] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
- name: Install vcpkg packages | |
if: matrix.os == 'windows-latest' | |
uses: johnwason/vcpkg-action@v6 | |
id: vcpkg | |
with: | |
triplet: x64-windows-release | |
token: ${{ github.token }} | |
manifest-dir: ${{ github.workspace }}/.github/manifest | |
github-binarycache: true | |
- name: Make Release Windows | |
if: matrix.os == 'windows-latest' | |
run: |- | |
$env:SODIUM_LIB_DIR="$(pwd)\vcpkg\packages\libsodium_x64-windows-release\lib" | |
make release | |
- name: Make Release | |
run: make release |