-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from powergee/update-spaa24-pldi24
Update Artifacts for CIRC(PLDI'24) and HP-BRCU(SPAA'24)
- Loading branch information
Showing
233 changed files
with
41,731 additions
and
6,997 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.gitmodules export-ignore | ||
.gitlab-ci.yml export-ignore | ||
archive.sh export-ignore |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Test Benchmark | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Install clang | ||
run: sudo apt-get update && sudo apt-get install -y clang | ||
|
||
- name: Install Rust nightly toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: nightly | ||
components: rustfmt, clippy | ||
|
||
- name: Install cargo-audit | ||
run: cargo install cargo-audit | ||
|
||
- name: Check code formatting | ||
run: cargo fmt -- --check | ||
|
||
- name: Run checks | ||
run: | | ||
cargo check --verbose | ||
cargo audit | ||
- name: Run tests | ||
run: | | ||
cargo test -- --nocapture --test-threads 1 | ||
cargo test --release -- --nocapture --test-threads 1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,8 @@ perf.data* | |
jeprof.* | ||
.idea/ | ||
.mypy_cache/ | ||
*.csv | ||
tags | ||
|
||
*.csv | ||
.python-version |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.