Skip to content

Commit c2e5e91

Browse files
committedFeb 5, 2025·
wip
1 parent fbf6934 commit c2e5e91

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed
 

‎.github/workflows/main.yml

+3-9
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ jobs:
3636
- name: Install common deps
3737
run: |
3838
sudo apt-get install zlib1g zlib1g-dev python3 ninja-build curl
39-
cd c3c && echo "c3c exists"
4039
4140
- name: Install Clang ${{matrix.llvm_version}}
4241
run: |
@@ -66,7 +65,7 @@ jobs:
6665
- name: CMake18
6766
if: matrix.llvm_version >= 18 && matrix.llvm_version != env.LLVM_DEV_VERSION
6867
run: |
69-
cd ../c3c/
68+
cd c3c
7069
cmake -B build \
7170
-G Ninja \
7271
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
@@ -81,17 +80,12 @@ jobs:
8180
8281
- name: C3 Compile and run some examples
8382
run: |
84-
cd resources
83+
cd c3c/resources
8584
../build/c3c compile examples/base64.c3
8685
../build/c3c compile-run examples/args.c3 -- foo -bar "baz baz"
8786
8887
- name: Compile run unit tests
8988
run: |
90-
cd test
89+
cd c3c/test
9190
../build/c3c compile-test unit
9291
93-
- name: run compiler tests
94-
run: |
95-
cd test
96-
python3 src/tester.py ../build/c3c test_suite/
97-

0 commit comments

Comments
 (0)
Please sign in to comment.