guix: build only supported targets using guix-start
, update guix-start
and guix-check
to work correctly outside of containers
#8445
Workflow file for this run
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
name: Clang Diff Format Check | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
ClangFormat: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Fetch git | |
run: git fetch | |
- name: Run Clang-Format-Diff.py | |
run: | | |
git diff -U0 origin/develop -- $(git ls-files -- $(cat test/util/data/non-backported.txt)) | ./contrib/devtools/clang-format-diff.py -p1 > diff_output.txt | |
if [ -s diff_output.txt ]; then | |
echo "Clang format differences found:" | |
cat diff_output.txt | |
exit 1 | |
else | |
echo "No Clang format differences found." | |
fi |