Skip to content

chore: update macos runner version and avoid using old dfx versions #1422

chore: update macos runner version and avoid using old dfx versions

chore: update macos runner version and avoid using old dfx versions #1422

name: rust-encrypted-notes
on:
push:
branches:
- master
pull_request:
paths:
- rust/encrypted-notes-dapp/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/rust-encrypted-notes-example.yml
- .ic-commit
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rust-encrypted-notes-darwin:
runs-on: macos-15
steps:
- uses: actions/checkout@v1
- name: Provision Darwin
run: bash .github/workflows/provision-darwin.sh
- name: Rust Encrypted Notes Darwin (unit tests)
run: |
pushd motoko/encrypted-notes-dapp
make test-unit BUILD_ENV=rust
popd
- name: Rust Encrypted Notes Darwin (e2e)
run: |
pushd motoko/encrypted-notes-dapp
make test-e2e BUILD_ENV=rust
popd
rust-encrypted-notes-linux:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Rust Encrypted Notes Linux (unit tests)
run: |
pushd motoko/encrypted-notes-dapp
make test-unit BUILD_ENV=rust
popd
- name: Rust Encrypted Notes Linux (e2e)
run: |
pushd motoko/encrypted-notes-dapp
make test-e2e BUILD_ENV=rust
popd