aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yaml21
1 files changed, 10 insertions, 11 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 62ba45d..1b6c8f4 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -377,7 +377,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- vm:
+ os:
- freebsd
suite:
- core-app
@@ -424,18 +424,17 @@ jobs:
uses: actions/checkout@v4
- name: Run tests (FreeBSD)
- if: matrix.vm == 'freebsd'
- uses: vmactions/freebsd-vm@v1
+ uses: cross-platform-actions/[email protected]
timeout-minutes: 60
with:
- usesh: true
- copyback: false
- prepare: |
- pkg update
- pkg upgrade -y
- pkg install -y erlang elixir bash ca_root_nss gmake git libsodium perl5 7-zip
+ operating_system: ${{ matrix.os }}
+ version: '14.3'
+ run: |
+ sudo pkg update
+ sudo pkg upgrade -y
+ sudo pkg install -y erlang elixir bash ca_root_nss gmake git libsodium perl5 7-zip
+
git config --global safe.directory '*'
erl -sname init_cookie -run erlang halt
- run: |
- gmake check c=${{ matrix.suite }} -j4
+ gmake check c=${{ matrix.suite }} -j4 USE_NODETOOL=1