Skip to content

Commit

Permalink
Merge pull request #632 from dfinity-berestovskyy/andriy/update-perfo…
Browse files Browse the repository at this point in the history
…rmance-counters

Update `rust/performance_counters` example
  • Loading branch information
sesi200 authored Dec 8, 2023
2 parents 494120f + b88c391 commit 81e3e53
Show file tree
Hide file tree
Showing 6 changed files with 557 additions and 5 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/rust-performance_counters-example.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: rust-performance_counters
on:
push:
branches:
- master
pull_request:
paths:
- rust/performance_counters/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/rust-performance_counters-example.yaml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rust-performance_counters-example-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 Performance Counters Darwin
run: |
dfx start --background
pushd rust/performance_counters
make test
popd
rust-performance_counters-example-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 Performance Counters Linux
run: |
dfx start --background
pushd rust/performance_counters
make test
popd
20 changes: 20 additions & 0 deletions .github/workflows/rust-performance_counters-skip.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: rust-performance_counters
on:
pull_request:
paths-ignore:
- rust/performance_counters/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/rust-performance_counters-example.yaml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rust-performance_counters-example-darwin:
runs-on: ubuntu-latest
steps:
- run: echo 'Not needed - relevant folder not touched'
rust-performance_counters-example-linux:
runs-on: ubuntu-latest
steps:
- run: echo 'Not needed - relevant folder not touched'
Loading

0 comments on commit 81e3e53

Please sign in to comment.