-
Notifications
You must be signed in to change notification settings - Fork 3
63 lines (46 loc) · 1.04 KB
/
dragonflybsd.yml
File metadata and controls
63 lines (46 loc) · 1.04 KB
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
name: DragonflyBSD
on:
workflow_dispatch:
release:
types: [published]
push:
branches:
- '*'
paths:
- '**.py'
- '.github/workflows/dragonflybsd.yml'
- '.github/workflows/testrun.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
sshfs:
strategy:
fail-fast: false
matrix:
release: ["6.4.1", "6.4.2"]
arch: [""]
runs: ["ubuntu-24.04"]
uses: ./.github/workflows/testrun.yml
secrets: inherit
with:
runs: ${{ matrix.runs }}
os: dragonflybsd
release: ${{ matrix.release }}
arch: ${{ matrix.arch }}
sync: "sshfs"
nfs:
strategy:
fail-fast: false
matrix:
release: ["6.4.0", "6.4.1", "6.4.2"]
arch: [""]
runs: ["ubuntu-24.04"]
uses: ./.github/workflows/testrun.yml
secrets: inherit
with:
runs: ${{ matrix.runs }}
os: dragonflybsd
release: ${{ matrix.release }}
arch: ${{ matrix.arch }}
sync: "nfs"