forked from speced/bikeshed
-
Notifications
You must be signed in to change notification settings - Fork 0
163 lines (153 loc) · 5.01 KB
/
ci.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
name: CI
on:
push:
branches-ignore:
- "dependabot/**"
- "daily-test-sync"
pull_request:
workflow_dispatch: {}
workflow_call:
inputs:
workflow_call:
type: boolean
default: true
jobs:
build:
if: "!inputs.workflow_call"
needs: lint
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
python-version:
- '3.9'
- '3.10'
- '3.11'
os:
- windows-latest
- ubuntu-latest
- macos-latest
exclude:
- os: windows-latest
python-version: '3.11'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip wheel
pip install --editable .
- name: Test with bikeshed
run: bikeshed --no-update test
lint:
if: "!inputs.workflow_call"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- uses: psf/[email protected]
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -r .github/workflows/update-tests/requirements.txt
- name: Lint with ruff
run: |
ruff check bikeshed
- name: Lint with pylint
run: |
echo "::add-matcher::.github/workflows/pylint-problem-matcher.json"
pylint bikeshed *.py .github/workflows/update-tests/*.py
- name: Lint with mypy
run: |
mypy
pyinstaller:
strategy:
fail-fast: false
matrix:
include:
# https://packaging.python.org/en/latest/specifications/platform-compatibility-tags/#platform-tag
# target=$(python -c 'import sysconfig; print(sysconfig.get_platform().replace("-", "_").replace(".", "_"))')
- { os: ubuntu-latest, target: linux_x86_64 }
- { os: macos-latest, target: macosx_11_0_arm64 }
- { os: macos-13, target: macosx_10_9_x86_64 }
- { os: windows-latest, target: win_amd64 }
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: pip install -e .
- run: pip install pyinstaller
- run: bikeshed update
- run: pyinstaller -y --name=bikeshed --collect-all=bikeshed ./bikeshed.py
- env:
target: ${{ matrix.target }}
run: |
version=$(cat bikeshed/semver.txt)
mkdir stage
mv dist/bikeshed stage/bikeshed-$target-$version
- uses: actions/upload-artifact@v4
with:
name: bikeshed-${{ matrix.target }}
path: stage
bikeshed-ape:
needs: pyinstaller
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: jart/cosmopolitan
path: cosmopolitan
- working-directory: cosmopolitan
run: |
sudo wget -O /usr/bin/ape https://cosmo.zip/pub/cosmos/bin/ape-$(uname -m).elf
sudo chmod +x /usr/bin/ape
sudo sh -c "echo ':APE:M::MZqFpD::/usr/bin/ape:' >/proc/sys/fs/binfmt_misc/register"
sudo sh -c "echo ':APE-jart:M::jartsr::/usr/bin/ape:' >/proc/sys/fs/binfmt_misc/register"
./tool/cosmocc/package.sh
echo "$PWD/cosmocc/bin" >> "$GITHUB_PATH"
- uses: actions/download-artifact@v4
with:
name: bikeshed-linux_x86_64
- uses: actions/download-artifact@v4
with:
name: bikeshed-macosx_10_9_x86_64
- uses: actions/download-artifact@v4
with:
name: bikeshed-macosx_11_0_arm64
- uses: actions/download-artifact@v4
with:
name: bikeshed-win_amd64
- run: |
version=$(cat bikeshed/semver.txt)
mkdir bikeshed-ape-$version
mv bikeshed-linux_x86_64-$version bikeshed-linux_x86_64
mv bikeshed-macosx_10_9_x86_64-$version bikeshed-macosx_10_9_x86_64
mv bikeshed-macosx_11_0_arm64-$version bikeshed-macosx_11_0_arm64
mv bikeshed-win_amd64-$version bikeshed-win_amd64
cosmoc++ -std=c++23 -fexceptions -DVERSION=\"$version\" -o bikeshed-ape-$version/bikeshed bikeshed-ape.cpp
rm bikeshed-ape-$version/bikeshed.aarch64.elf
rm bikeshed-ape-$version/bikeshed.com.dbg
zip -Ar bikeshed-ape-$version/bikeshed bikeshed-linux_x86_64 bikeshed-macosx_10_9_x86_64 bikeshed-macosx_11_0_arm64 bikeshed-win_amd64
- run: |
version=$(cat bikeshed/semver.txt)
mkdir stage
mv bikeshed-ape-$version stage/bikeshed-ape-$version
- uses: actions/upload-artifact@v4
with:
name: bikeshed-ape
path: stage