File tree 1 file changed +3
-9
lines changed
1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change 36
36
- name : Install common deps
37
37
run : |
38
38
sudo apt-get install zlib1g zlib1g-dev python3 ninja-build curl
39
- cd c3c && echo "c3c exists"
40
39
41
40
- name : Install Clang ${{matrix.llvm_version}}
42
41
run : |
66
65
- name : CMake18
67
66
if : matrix.llvm_version >= 18 && matrix.llvm_version != env.LLVM_DEV_VERSION
68
67
run : |
69
- cd ../ c3c/
68
+ cd c3c
70
69
cmake -B build \
71
70
-G Ninja \
72
71
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
@@ -81,17 +80,12 @@ jobs:
81
80
82
81
- name : C3 Compile and run some examples
83
82
run : |
84
- cd resources
83
+ cd c3c/ resources
85
84
../build/c3c compile examples/base64.c3
86
85
../build/c3c compile-run examples/args.c3 -- foo -bar "baz baz"
87
86
88
87
- name : Compile run unit tests
89
88
run : |
90
- cd test
89
+ cd c3c/ test
91
90
../build/c3c compile-test unit
92
91
93
- - name : run compiler tests
94
- run : |
95
- cd test
96
- python3 src/tester.py ../build/c3c test_suite/
97
-
You can’t perform that action at this time.
0 commit comments