-
Notifications
You must be signed in to change notification settings - Fork 6
54 lines (46 loc) · 1.42 KB
/
pyjs_matrix_variants.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: pyjs-matrix-variants
on:
workflow_dispatch:
jobs:
build:
runs-on: macos-latest
# runs-on: macos-11 # requires changes
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
variant:
- default
- shared-pkg
- shared-ext
- static-ext
- framework-pkg
- framework-ext
- relocatable-pkg
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: '0'
- name: cache downloads
id: cache-downloads
uses: actions/cache@v3
env:
cache-name: pyjs-cache-1
with:
path: |
source/projects/py/targets/build/downloads
source/projects/py/targets/build/lib/bzip2
source/projects/py/targets/build/lib/openssl
source/projects/py/targets/build/lib/xz
key: $${{ env.cache-name }}-${{ hashFiles('source/projects/py/resources/pyjs-dependencies.txt') }}
- name: setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip' # caching pip dependencies
- name: install python requirements
run: pip install -r requirements.txt
- name: Display python version
run: python3 --version
- name: build ${{ matrix.variant }}
run: make ${{ matrix.variant }}