CI #112
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
jobs: | |
fmt: | |
name: rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt | |
- run: cargo fmt --all -- --check | |
c: | |
name: C | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./examples/c | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uftrace | |
run: | | |
sudo apt-get update | |
sudo apt-get install uftrace | |
- uses: mkroening/rust-toolchain-toml@main | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- name: Build | |
run: make | |
- name: Run | |
run: | | |
mkdir tracedir | |
./test | |
- name: Replay | |
run: uftrace replay --data=tracedir --output-fields=tid | tee ci.snap | |
- name: Compare to snapshot | |
run: diff -u out.snap ci.snap | |
rust: | |
name: Rust | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./examples/rust | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uftrace | |
run: | | |
sudo apt-get update | |
sudo apt-get install uftrace | |
- uses: mkroening/rust-toolchain-toml@main | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- name: Build | |
run: cargo +nightly rustc -- -Zinstrument-mcount -C passes="ee-instrument<post-inline>" | |
- name: Run | |
run: | | |
mkdir tracedir | |
../../target/debug/rftrace-rs-test | |
- name: Replay | |
run: uftrace replay --data=tracedir --output-fields=tid | tee ci.snap | |
- name: Compare to snapshot | |
run: diff -u out.snap ci.snap |