-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Avimitin <[email protected]>
- Loading branch information
Showing
10 changed files
with
109 additions
and
24 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,72 @@ | ||
name: Code linting | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
- ready_for_review | ||
- labeled | ||
env: | ||
USER: runner | ||
|
||
# Cancel the current workflow when new commit pushed | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
checkfmt: | ||
name: "Check formats" | ||
strategy: | ||
fail-fast: false | ||
runs-on: [self-hosted, linux, nixos] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.head_ref }} | ||
- name: "Run testcases" | ||
run: | | ||
RET=0 | ||
warnOnFileChanged() { | ||
if ! git diff -q --exit-code; then | ||
RET=1 | ||
local msg="$1"; shift | ||
echo "$msg" | ||
echo "$msg" >> $GITHUB_STEP_SUMMARY | ||
git reset --hard | ||
fi | ||
} | ||
nix develop '.#t1.elaborator' -c mill -i configgen.reformat | ||
nix develop '.#t1.elaborator' -c mill -i rocketv.reformat | ||
nix develop '.#t1.elaborator' -c mill -i t1.reformat | ||
nix develop '.#t1.elaborator' -c mill -i t1rocket.reformat | ||
warnOnFileChanged "* Scala format fail, please run 'nix develop '.#t1.elaborator' -c mill -i _.reformat'" | ||
nix fmt | ||
warnOnFileChanged "* Nix format fail, please run 'nix fmt'" | ||
pushd difftest | ||
nix shell '.#cargo' '.#rustfmt' -c cargo fmt | ||
warnOnFileChanged "* Cargo format fail, please run 'cd difftest; cargo -- format'" | ||
popd | ||
pushd t1rocketemu | ||
nix shell '.#cargo' '.#rustfmt' -c cargo fmt | ||
warnOnFileChanged "* Cargo format fail, please run 'cd t1rocketemu; cargo fmt'" | ||
popd | ||
if nix run '.#ripgrep' -- '\p{Script=Han}' t1 > zh-hans.txt; then | ||
RET=1 | ||
msg="* Found ZH_CN comments" | ||
echo "$msg" | ||
echo "$msg" >> $GITHUB_STEP_SUMMARY | ||
echo '```text' >> $GITHUB_STEP_SUMMARY | ||
cat zh-hans.txt >> $GITHUB_STEP_SUMMARY | ||
echo '```' >> $GITHUB_STEP_SUMMARY | ||
git reset --hard | ||
fi | ||
exit $RET |
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
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 |
---|---|---|
|
@@ -189,7 +189,7 @@ impl Driver { | |
|
||
shadow_mem, | ||
|
||
quit: false | ||
quit: false, | ||
} | ||
} | ||
|
||
|
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
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