We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a55687 commit c01ce6bCopy full SHA for c01ce6b
1 file changed
.github/workflows/main.yml
@@ -37,4 +37,29 @@ jobs:
37
mkdir build
38
cmake -B build -DLLVM_DIR=/mnt/build/lib/cmake/llvm/
39
cmake --build build
40
-
+ - name: Cache LLVM build
41
+ uses: actions/cache@v4
42
+ with:
43
+ path: /mnt/build/
44
+ key: llvm-build-${{ hashFiles('llvm-project/**', 'ASPIS/CMakeLists.txt') }}
45
+ restore-keys: |
46
+ llvm-build-
47
+
48
+ - name: Cache pip
49
50
51
+ path: ~/.cache/pip
52
+ key: pip-${{ hashFiles('ASPIS/testing/requirements.txt') }}
53
54
+ pip-
55
+ - name: Install Python requirements
56
+ shell: bash
57
+ working-directory: ./ASPIS/testing
58
+ run: |
59
+ pip install -r requirements.txt
60
+ - name: Testing ASPIS
61
62
63
64
+ pytest test.py -n auto
65
0 commit comments