-
Notifications
You must be signed in to change notification settings - Fork 1.8k
57 lines (57 loc) · 1.49 KB
/
bsd.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
name: tox
on: [push, pull_request]
permissions:
# BOLD WARNING: do not add permissions, this workflow executes remote code
contents: read
env:
FORCE_COLOR: 1
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
freebsd:
name: freebsd
timeout-minutes: 20
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: vmactions/freebsd-vm@v1
with:
prepare: pkg install -y nginx
usesh: true
copyback: false
run: |
uname -a \
&& python --version \
&& openssl --version \
&& pkg info nginx \
&& python -m pip install --upgrade pip \
&& python -m pip install tox \
&& tox -e run-module \
&& tox -e run-entrypoint \
&& tox -e py
openbsd:
name: openbsd
timeout-minutes: 20
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: vmactions/openbsd-vm@v1
with:
prepare: pkg_add nginx
usesh: true
copyback: false
run: |
uname -a \
&& python --version \
&& openssl --version \
&& pkg_info nginx \
&& python -m pip install --upgrade pip \
&& python -m pip install tox \
&& tox -e run-module \
&& tox -e run-entrypoint \
&& tox -e py