We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dc3b108 + 45f6d83 commit c76516bCopy full SHA for c76516b
.github/workflows/tests.yml
@@ -7,7 +7,7 @@ jobs:
7
runs-on: ubuntu-latest
8
strategy:
9
matrix:
10
- python-version: ['2.7', '3.6', '3.8']
+ python-version: ['2.7', '3.6', '3.8', '3.10']
11
12
steps:
13
@@ -25,12 +25,15 @@ jobs:
25
- name: Install requirements
26
run: pip install -r requirements.txt
27
28
+ - name: Install llvm 8 (llvmlite compatible)
29
+ run: sudo apt-get install llvm-8
30
+
31
+ - name: Use llvm 8
32
+ run: sudo update-alternatives --install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-8 1
33
34
- name: Install optional requirements
35
run: pip install -r optional_requirements.txt
36
- - name: Install llvm
- run: sudo apt-get install llvm
-
37
- name: Install Miasm
38
uses: ./.github/actions/install
39
0 commit comments