Skip to content

Commit

Permalink
Merge pull request #47 from powergee/update-spaa24-pldi24
Browse files Browse the repository at this point in the history
Update Artifacts for CIRC(PLDI'24) and HP-BRCU(SPAA'24)
  • Loading branch information
jeehoonkang authored May 17, 2024
2 parents 6d8d9bc + 5215f04 commit a78121f
Show file tree
Hide file tree
Showing 233 changed files with 41,731 additions and 6,997 deletions.
1 change: 1 addition & 0 deletions .gitattributes
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
37 changes: 37 additions & 0 deletions .github/workflows/test.yml
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
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ perf.data*
jeprof.*
.idea/
.mypy_cache/
*.csv
*.pdf
tags

*.pdf
*.csv
.python-version
15 changes: 0 additions & 15 deletions .gitmodules

This file was deleted.

Loading

0 comments on commit a78121f

Please sign in to comment.