File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed
Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 55jobs :
66 build-and-test :
77 runs-on : ubuntu-latest
8+ strategy :
9+ matrix :
10+ llvm_versions : [14, 15]
811 steps :
912 - uses : actions/checkout@v4
1013 - run : git submodule update --init --recursive subprojects/symcc-rt
11- # build and test with default LLVM version 15
12- - run : docker build -t symqemu .
13- # LLVM version 14
14- - run : docker build --build-arg LLVM_VERSION=14 -t symqemu .
14+ # build and test with multiple LLVM versions
15+ - run : docker build --build-arg LLVM_VERSION=${{ matrix.llvm_versions }} - t symqemu .
16+ - run : docker run -t symqemu make -C build check
17+ - run : docker run -t symqemu sh -c "cd tests/ symqemu && python3 -m unittest test.py"
Original file line number Diff line number Diff line change @@ -68,7 +68,6 @@ RUN mkdir build && cd build && /configure_symqemu.sh
6868
6969RUN cd build && make -j
7070
71- RUN cd build && make check
72-
73- WORKDIR /symqemu_source/tests/symqemu
74- RUN python3 -m unittest test.py
71+ # RUN cd build && make check
72+ # WORKDIR /symqemu_source/tests/symqemu
73+ # RUN python3 -m unittest test.py
You can’t perform that action at this time.
0 commit comments