File tree Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 6
6
- ' v*'
7
7
8
8
jobs :
9
+ build_ubuntu :
10
+ runs-on : ubuntu-latest
11
+ strategy :
12
+ matrix :
13
+ python : [ '3.9', '3.11']
14
+ steps :
15
+ - name : install libegl1
16
+ run : sudo apt-get install libegl1
17
+ - name : install python3-opengl
18
+ run : sudo apt-get install python3-opengl
19
+ - uses : compas-dev/compas-actions.build@v3
20
+ with :
21
+ python : ${{ matrix.python }}
22
+ invoke_lint : true
23
+ invoke_test : true
24
+
9
25
build :
10
26
runs-on : ${{ matrix.os }}
11
27
strategy :
12
28
matrix :
13
- os : [ubuntu-latest, macos-latest, windows-latest]
14
- python : ['3.8', '3.9', '3.10 ']
29
+ os : [macos-latest, windows-latest]
30
+ python : [ '3.9', '3.11 ']
15
31
16
32
steps :
17
33
- uses : compas-dev/compas-actions.build@v3
21
37
invoke_test : true
22
38
23
39
Publish :
24
- needs : build
40
+ needs : [ build, build_ubuntu]
25
41
runs-on : ubuntu-latest
26
42
steps :
27
43
- uses : compas-dev/compas-actions.publish@v2
Original file line number Diff line number Diff line change 1
- compas >= 2.0.0b2
1
+ compas >= 2.0.0
2
2
freetype-py
3
3
PyOpenGL
4
4
PyOpenGL_accelerate
You can’t perform that action at this time.
0 commit comments