-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into documentation
- Loading branch information
Showing
158 changed files
with
7,505 additions
and
1,779 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 +1,2 @@ | ||
/tests/**/* linguist-generated=true | ||
/toolchain/mechanisms/* linguist-generated=true |
Validating CODEOWNERS rules …
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,105 @@ | ||
name: Cleanliness | ||
|
||
on: [push, pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
cleanliness: | ||
name: Code Cleanliness Test | ||
runs-on: "ubuntu-latest" | ||
env: | ||
pr_everything: 0 | ||
master_everything: 0 | ||
steps: | ||
- name: Clone - PR | ||
uses: actions/checkout@v3 | ||
with: | ||
path: pr | ||
- name: Clone - Master | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: MFlowCode/MFC | ||
ref: master | ||
path: master | ||
|
||
- name: Setup Ubuntu | ||
run: | | ||
sudo apt update -y | ||
sudo apt install -y tar wget make cmake gcc g++ python3 python3-dev "openmpi-*" libopenmpi-dev | ||
- name: Build | ||
run: | | ||
(cd pr && /bin/bash mfc.sh build -j $(nproc) --debug 2> ../pr.txt) | ||
(cd master && /bin/bash mfc.sh build -j $(nproc) --debug 2> ../master.txt) | ||
sed -i '/\/pr\//d' pr.txt | ||
sed -i '/\/master\//d' master.txt | ||
- name: Unused Variables Diff | ||
run: | | ||
grep -F 'Wunused-variable' master.txt > mUnused.txt | ||
grep -F 'Wunused-variable' pr.txt > prUnused.txt | ||
diff prUnused.txt mUnused.txt || true | ||
- name: Unused Dummy Arguments Diff | ||
run: | | ||
grep -F 'Wunused-dummy-argument' pr.txt > prDummy.txt | ||
grep -F 'Wunused-dummy-argument' master.txt > mDummy.txt | ||
diff prDummy.txt mDummy.txt || true | ||
- name: Unused Value Diff | ||
run: | | ||
grep -F 'Wunused-value' pr.txt > prUnused_val.txt | ||
grep -F 'Wunused-value' master.txt > mUnused_val.txt | ||
diff prUnused_val.txt mUnused_val.txt || true | ||
- name: Maybe Uninitialized Variables Diff | ||
run: | | ||
grep -F 'Wmaybe-uninitialized' pr.txt > prMaybe.txt | ||
grep -F 'Wmaybe-uninitialized' master.txt > mMaybe.txt | ||
diff prMaybe.txt mMaybe.txt || true | ||
- name: Everything Diff | ||
run: | | ||
grep '\-W' pr.txt > pr_every.txt | ||
grep '\-W' master.txt > m_every.txt | ||
diff pr_every.txt m_every.txt || true | ||
- name: List of Warnings | ||
run: | | ||
cat pr_every.txt | ||
- name: Summary | ||
run: | | ||
pr_variable=$(grep -c -F 'Wunused-variable' pr.txt) | ||
pr_argument=$(grep -c -F 'Wunused-dummy-argument' pr.txt) | ||
pr_value=$(grep -c -F 'Wunused-value' pr.txt) | ||
pr_uninit=$(grep -c -F 'Wmaybe-uninitialized' pr.txt) | ||
pr_everything=$(grep -c '\-W' pr.txt) | ||
master_variable=$(grep -c -F 'Wunused-variable' master.txt) | ||
master_argument=$(grep -c -F 'Wunused-dummy-argument' master.txt) | ||
master_value=$(grep -c -F 'Wunused-value' master.txt) | ||
master_uninit=$(grep -c -F 'Wmaybe-uninitialized' master.txt) | ||
master_everything=$(grep -c '\-W' master.txt ) | ||
echo "pr_everything=$pr_everything" >> $GITHUB_ENV | ||
echo "master_everything=$master_everything" >> $GITHUB_ENV | ||
echo "Difference is how many warnings were added or removed from master to PR." | ||
echo "Negative numbers are better since you are removing warnings." | ||
echo " " | ||
echo "Unused Variable Count: $pr_variable, Difference: $((pr_variable - master_variable))" | ||
echo "Unused Dummy Argument: $pr_argument, Difference: $((pr_argument - master_argument))" | ||
echo "Unused Value: $pr_value, Difference: $((pr_value - master_value))" | ||
echo "Maybe Uninitialized: $pr_uninit, Difference: $((pr_uninit - master_uninit))" | ||
echo "Everything: $pr_everything, Difference: $((pr_everything - master_everything))" | ||
|
||
- name: Check Differences | ||
if: env.pr_everything > env.master_everything | ||
run: | | ||
echo "Difference between warning count in PR is greater than in master." | ||
exit 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
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
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.