Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a2333bd

Browse files
committedFeb 7, 2025·
Merge branch 'main' into ci_testing
2 parents 6f80e7f + e09ccb6 commit a2333bd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+8563
-5957
lines changed
 

‎.github/workflows/main.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ jobs:
2323
build-c3fmt:
2424
runs-on: ubuntu-22.04
2525
strategy:
26+
# Don't abort runners if a single one fails
27+
fail-fast: false
28+
2629
matrix:
2730
line_width: [80, 100]
2831
indent: ["4", "t"]
@@ -96,9 +99,6 @@ jobs:
9699
- name: c3fmt c3tools
97100
run: |
98101
find lib/ | grep ".c3$" | xargs -I{} ./build/c3fmt -w ${{ matrix.line_width }} -i ${{ matrix.indent }} {}
99-
echo "Checking if any changes after formatting"
100-
git add lib/ && git diff --quiet && git diff --cached | head
101-
git commit -m "CI commit after formatting"
102102
103103
- name: c3tools unit tests after formatting
104104
run: |
@@ -107,8 +107,6 @@ jobs:
107107
- name: c3fmt c3tools (double)
108108
run: |
109109
find lib/ | grep ".c3$" | xargs -I{} ./build/c3fmt -w ${{ matrix.line_width }} -i ${{ matrix.indent }} {}
110-
echo "Checking if any changes after formatting (must be the same!)"
111-
git diff --quiet
112110
113111
- name: c3tools unit tests after (double) formatting
114112
run: |
@@ -141,6 +139,7 @@ jobs:
141139
find c3c/lib/ | grep ".c3$" | xargs -I{} ./build/c3fmt -w ${{ matrix.line_width }} -i ${{ matrix.indent }} {}
142140
cd c3c/
143141
echo "Checking if any changes after formatting (must be the same!)"
142+
git diff | head
144143
git diff --quiet
145144
146145
- name: c3c stdlib unit tests formatted (double)
@@ -157,3 +156,6 @@ jobs:
157156
cd c3c/test
158157
../build/c3c compile-test unit
159158
159+
- name: c3fmt of all *.c3t files in test_suite
160+
run: |
161+
./scripts/c3fmt_c3c_test_suite.sh c3c/test/test_suite/

‎.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
build/
22
.gdb_history
33
scripts/c3fmt_gentests
4-
test/test_c3fmt_corpus.c3
4+
test/c3tools/codefmt/test_c3fmt_corpus.c3
5+
# exclude c3c/ used in CI/CD
6+
c3c/

0 commit comments

Comments
 (0)
Please sign in to comment.