forked from PavelBlend/blender-molecular
-
Notifications
You must be signed in to change notification settings - Fork 46
135 lines (117 loc) · 4.44 KB
/
molecular-build.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Molecular Addon for Blender
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest cython==3.0.0
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build with Cython
id: build
# run: echo "::set-output name=version::$(python make_release.py)"
# force bash shell on windows too
shell: bash
run: echo "version=$(python make_release.py)" >> $GITHUB_OUTPUT
- name: Upload windows zip
uses: actions/upload-artifact@v4
with:
path: molecular_${{ steps.build.outputs.version }}_win.zip
name: molecular_win
build_linux:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install dependencies
run: |
# attempt to install libpython.a for 3.11
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install libpython3.11-dev
python -m pip install --upgrade pip
pip install flake8 pytest cython==3.0.0
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build with Cython
id: build
#run: echo "::set-output name=version::$(python make_release.py)"
run: echo "version=$(python make_release.py)" >> $GITHUB_OUTPUT
- name: Upload linux zip
uses: actions/upload-artifact@v4
with:
path: molecular_${{ steps.build.outputs.version }}_linux.zip
name: molecular_linux
build_macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest cython==3.0.0
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build with Cython
id: build
#run: echo "::set-output name=version::$(python make_release.py)"
run: echo "version=$(python make_release.py)" >> $GITHUB_OUTPUT
- name: Upload mac zip
uses: actions/upload-artifact@v4
with:
path: molecular_${{ steps.build.outputs.version }}_mac.zip
name: molecular_mac
upload_draft:
name: Upload zips as draft release assets
runs-on: ubuntu-latest
needs: [build_windows, build_linux, build_macos]
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v4
with:
name: molecular_win
- uses: actions/download-artifact@v4
with:
name: molecular_linux
- uses: actions/download-artifact@v4
with:
name: molecular_mac
- name: Uploading
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REPOSITORY: $GITHUB_REPOSITORY
run: python .github/workflows/release.py --path . --files `ls *.zip`