-
Notifications
You must be signed in to change notification settings - Fork 7
70 lines (54 loc) · 1.55 KB
/
pyjs_matrix_os.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: pyjs-matrix-os
on:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
# os: [macos-10.15, macos-11] # macos-11 requires changes
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/py/targets/build/downloads
source/py/targets/build/lib/bzip2
source/py/targets/build/lib/openssl
source/py/targets/build/lib/xz
key: $${{ env.cache-name }}-${{ hashFiles('source/py/resources/pyjs-dependencies.txt') }}
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- name: install python requirements
run: pip install -r requirements.txt
- name: Display python version
run: python3 --version
- name: build_default
run: make
- name: build_homebrew_ext
run: make homebrew-ext
- name: build_homebrew_pkg
run: make homebrew-pkg
- name: build_shared_pkg
run: make shared-pkg
- name: build_shared_ext
run: make shared-ext
- name: build_static_ext
run: make static-ext
- name: build_framework_pkg
run: make framework-pkg
- name: build_framework_ext
run: make framework-ext
- name: build_relocatable_pkg
run: make relocatable-pkg