aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/solaris_test.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/solaris_test.yml')
-rw-r--r--.github/workflows/solaris_test.yml28
1 files changed, 0 insertions, 28 deletions
diff --git a/.github/workflows/solaris_test.yml b/.github/workflows/solaris_test.yml
deleted file mode 100644
index 6470278..0000000
--- a/.github/workflows/solaris_test.yml
+++ /dev/null
@@ -1,28 +0,0 @@
1name: solaris_ci
2
3on:
4 workflow_dispatch:
5
6jobs:
7 build-native:
8 strategy:
9 matrix:
10 release: [11.4]
11 runs-on: ubuntu-latest
12 continue-on-error: false
13 name: Solaris ${{ matrix.release }}
14 steps:
15 - name: Checkout source
16 uses: actions/checkout@main
17 - name: Configure source
18 run: |
19 brew install automake autoconf libtool
20 ./autogen.sh
21 - name: Build on VM
22 uses: vmactions/solaris-vm@v1
23 with:
24 prepare: |
25 pkg install gcc make
26 run: |
27 MAKE=gmake ./configure
28 gmake -j2 check || (cat tests/test-suite.log && exit 1)