Skip to content

Commit

Permalink
Merge pull request #631 from dfinity-berestovskyy/andriy/update-rust-…
Browse files Browse the repository at this point in the history
…counter

Update `rust/counter` example
  • Loading branch information
sesi200 authored Dec 8, 2023
2 parents f69d8aa + 4843fcb commit c384d3b
Show file tree
Hide file tree
Showing 10 changed files with 197 additions and 608 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/rust-counter-example.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: rust-counter
on:
push:
branches:
- master
pull_request:
paths:
- rust/counter/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/rust-counter-example.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rust-counter-darwin:
runs-on: macos-12
steps:
- uses: actions/checkout@v1
- name: Provision Darwin
run: DFX_VERSION="0.15.2" bash .github/workflows/provision-darwin.sh
- name: Rust Counter Darwin
run: |
dfx start --background
pushd rust/counter
make test
popd
rust-counter-linux:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Provision Linux
run: DFX_VERSION="0.15.2" bash .github/workflows/provision-linux.sh
- name: Rust Counter Linux
run: |
dfx start --background
pushd rust/counter
make test
popd
16 changes: 16 additions & 0 deletions .github/workflows/rust-counter-skip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: rust-counter
on:
pull_request:
paths-ignore:
- rust/counter/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/rust-counter-example.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: echo 'Not needed - relevant folder not touched'
Loading

0 comments on commit c384d3b

Please sign in to comment.