-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use CachePadded from crossbeam submodule (#115)
* Use CachePadded from crossbeam submodule * CI: check if cache_padded.rs has been updated * DOC: mention that cache_padded.rs is used from crossbeam
- Loading branch information
Showing
7 changed files
with
33 additions
and
5 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,20 @@ | ||
name: Check for changes in cache_padded.rs | ||
on: | ||
schedule: | ||
- cron: "11 11 * * Mon" | ||
jobs: | ||
check-cache-padded: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone Git repository | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: Fetch newest stuff from crossbeam submodule | ||
working-directory: crossbeam | ||
run: | | ||
git fetch origin master | ||
- name: Check for changes in cache_padded.rs | ||
working-directory: crossbeam | ||
run: | | ||
git diff origin/master -- crossbeam-utils/src/cache_padded.rs |
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,3 @@ | ||
[submodule "crossbeam"] | ||
path = crossbeam | ||
url = https://github.com/crossbeam-rs/crossbeam.git |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../crossbeam/crossbeam-utils/src/cache_padded.rs |
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