-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace
triomphe::Arc
with our own MiniArc
type
- Loading branch information
1 parent
74f6b2e
commit 2b08fff
Showing
9 changed files
with
433 additions
and
61 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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Loom | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- '.devcontainer/**' | ||
- '.vscode/**' | ||
- 'tests/**' | ||
pull_request: | ||
paths-ignore: | ||
- '.devcontainer/**' | ||
- '.vscode/**' | ||
- 'tests/**' | ||
schedule: | ||
# Run against the last commit on the default branch on Friday at 8pm (UTC?) | ||
- cron: '0 20 * * 5' | ||
|
||
jobs: | ||
pre_job: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
should_skip: ${{ steps.skip_check.outputs.should_skip }} | ||
steps: | ||
- id: skip_check | ||
# https://github.com/marketplace/actions/skip-duplicate-actions | ||
uses: fkirc/skip-duplicate-actions@v5 | ||
with: | ||
concurrent_skipping: 'same_content' | ||
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]' | ||
|
||
test: | ||
needs: pre_job | ||
if: needs.pre_job.outputs.should_skip != 'true' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Mini Moka | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Rust toolchain | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: stable | ||
|
||
- name: Run tests in concurrent::arc module | ||
run: cargo test --release --lib common::concurrent::arc::loom_tests | ||
env: | ||
RUSTFLAGS: '--cfg moka_loom' |
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
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
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
Oops, something went wrong.