-
Notifications
You must be signed in to change notification settings - Fork 20
145 lines (131 loc) · 5.47 KB
/
main.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
136
137
138
139
140
141
142
143
144
145
# 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 plus
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10.2
uses: actions/setup-python@v2
with:
python-version: 3.10.2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest cython
# 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 --exit-zero --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 pack_molecular.py)"
- name: Upload windows zip
uses: actions/upload-artifact@v2
with:
name: molecular-plus_${{steps.build.outputs.version}}_310_win.zip
path: ./molecular-plus_${{steps.build.outputs.version}}_310_win.zip
build_linux:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10.12
uses: actions/setup-python@v2
with:
python-version: 3.10.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest cython
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --exit-zero --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 pack_molecular.py)"
- name: Upload linux zip
uses: actions/upload-artifact@v2
with:
name: molecular-plus_${{steps.build.outputs.version}}_310_linux.zip
path: ./molecular-plus_${{steps.build.outputs.version}}_310_linux.zip
build_macos:
runs-on: macos-11
outputs:
version: ${{steps.build.outputs.version}}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10.12
uses: actions/setup-python@v2
with:
python-version: 3.10.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest cython
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --exit-zero --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 pack_molecular.py)"
- name: Upload mac zip
uses: actions/upload-artifact@v2
with:
name: molecular-plus_${{steps.build.outputs.version}}_310_macos.zip
path: ./molecular-plus_${{steps.build.outputs.version}}_310_macos.zip
upload_release:
runs-on: macos-latest
needs: [ build_windows, build_linux, build_macos ]
steps:
- name: Make Release
uses: actions/create-release@v1
id: create_release
with:
draft: True
prerelease: True
release_name: molecular-plus_${{needs.build_macos.outputs.version}}
tag_name: ${{ github.ref }}
env:
GITHUB_TOKEN: ${{ github.token }}
- name: upload linux artifact
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./molecular-plus_${{needs.build_macos.outputs.version}}_310_linux.zip
asset_name: molecular-plus_${{needs.build_macos.outputs.version}}_310_linux.zip
asset_content_type: application/zip
- name: upload darwin artifact
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./molecular-plus_${{needs.build_macos.outputs.version}}_310_macos.zip
asset_name: molecular-plus_${{needs.build_macos.outputs.version}}_310_macos.zip
asset_content_type: application/zip
- name: upload windows artifact
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./molecular-plus_${{needs.build_macos.outputs.version}}_310_win.zip
asset_name: molecular-plus_${{needs.build_macos.outputs.version}}_310_win.zip
asset_content_type: application/zip