chore: update default dfx version to 0.16.0 #107
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: rust-send-http-get-example | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths: | |
- rust/send_http_get/** | |
- .github/workflows/provision-darwin.sh | |
- .github/workflows/provision-linux.sh | |
- .github/workflows/rust-send-http-get-example.yaml | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
rust-send-http-get-example-darwin: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Provision Darwin | |
run: bash .github/workflows/provision-darwin.sh | |
- name: Rust Send HTTP GET Darwin | |
run: | | |
dfx upgrade | |
dfx start --background | |
pushd rust/send_http_get | |
RUSTFLAGS=-Ctarget-cpu=mvp make test | |
popd | |
rust-send-http-get-example-linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Provision Linux | |
run: bash .github/workflows/provision-linux.sh | |
- name: Rust Send HTTP GET Linux | |
run: | | |
dfx upgrade | |
dfx start --background | |
pushd rust/send_http_get | |
RUSTFLAGS=-Ctarget-cpu=mvp make test | |
popd |