We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f767f9 commit ad448c3Copy full SHA for ad448c3
.github/workflows/smoke-freebsd.yml
@@ -0,0 +1,38 @@
1
+name: smoke-freebsd
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - "*"
7
+ tags-ignore:
8
9
+ pull_request:
10
11
+jobs:
12
+ freebsd:
13
+ env:
14
+ PERL_USE_UNSAFE_INC: 0
15
+ AUTHOR_TESTING: 1
16
+ AUTOMATED_TESTING: 1
17
+ RELEASE_TESTING: 1
18
19
+ runs-on: ubuntu-latest
20
21
+ steps:
22
+ - uses: actions/checkout@v4
23
+ - name: Test in FreeBSD
24
+ uses: vmactions/freebsd-vm@v1
25
+ with:
26
+ usesh: true
27
+ prepare: |
28
+ pkg install -y perl
29
+ run: |
30
+ freebsd-version
31
+ sysctl hw.model
32
+ sysctl hw.ncpu
33
+ sysctl hw.physmem
34
+ sysctl hw.usermem
35
+ perl -V
36
+ perl Makefile.PL
37
+ make -j 4 test
38
+ make -j 4 disttest NOECHO=
0 commit comments