-
-
Notifications
You must be signed in to change notification settings - Fork 90
54 lines (45 loc) · 1.23 KB
/
external-zstd.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
on:
push:
pull_request:
schedule:
- cron: '30 13 * * *'
jobs:
linux:
runs-on: 'ubuntu-22.04'
env:
# Make all compile warnings fatal.
ZSTD_WARNINGS_AS_ERRORS: '1'
# Activate Python development mode so we get warnings.
PYTHONDEVMODE: '1'
steps:
- name: System Setup
run: |
sudo apt-get install -y libzstd1 libzstd-dev python3-cffi
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- uses: actions/checkout@v4
- name: Build
run: |
python -m pip install --config-settings=--build-option=--system-zstd .
macOS:
runs-on: 'macos-13'
env:
# Make all compile warnings fatal.
ZSTD_WARNINGS_AS_ERRORS: '1'
# Activate Python development mode so we get warnings.
PYTHONDEVMODE: '1'
steps:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: System Setup
run: |
brew install -v zstd
python -m pip install cffi
- uses: actions/checkout@v4
- name: Build
run: |
python -m pip install --config-settings=--build-option=--system-zstd .