We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 774924e commit 69668d1Copy full SHA for 69668d1
1 file changed
.github/workflows/freebsd.yml
@@ -1,16 +1,32 @@
1
name: freebsd
2
3
-on: pull_request
+on:
4
+ push:
5
+ branches:
6
+ - develop
7
+ pull_request:
8
9
10
+
11
+concurrency:
12
+ group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
13
+ cancel-in-progress: true
14
15
+permissions:
16
+ contents: read # to fetch code (actions/checkout)
17
18
jobs:
19
bsd-x86:
20
+ if: "github.repository == 'OpenMathLib/OpenBLAS'"
21
runs-on: ubuntu-latest
22
steps:
- -uses: actions/checkout@v6
- -name: Default build
- id: bsd-x86-64
- uses: vmactions/freebsd-vm@v1
- with:
23
+ - name: checkout
24
+ uses: actions/checkout@v6
25
26
+ - name: build
27
+ id: bsd_x86_64
28
+ uses: vmactions/freebsd-vm@v1
29
+ with:
30
usesh: true
31
prepare: |
32
0 commit comments