diff options
-rw-r--r-- | .github/workflows/solaris_test.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/solaris_test.yml b/.github/workflows/solaris_test.yml new file mode 100644 index 0000000..091d8fa --- /dev/null +++ b/.github/workflows/solaris_test.yml | |||
@@ -0,0 +1,27 @@ | |||
1 | name: solaris_ci | ||
2 | |||
3 | on: [push] | ||
4 | |||
5 | jobs: | ||
6 | build-native: | ||
7 | strategy: | ||
8 | matrix: | ||
9 | release: [11.4] | ||
10 | runs-on: macos-12 | ||
11 | continue-on-error: false | ||
12 | name: Solaris ${{ matrix.release }} | ||
13 | steps: | ||
14 | - name: Checkout source | ||
15 | uses: actions/checkout@main | ||
16 | - name: Configure source | ||
17 | run: | | ||
18 | brew install automake autoconf libtool | ||
19 | ./autogen.sh | ||
20 | - name: Build on VM | ||
21 | uses: vmactions/solaris-vm@v0 | ||
22 | with: | ||
23 | prepare: | | ||
24 | pkg install gcc make | ||
25 | run: | | ||
26 | MAKE=gmake ./configure | ||
27 | gmake -j2 check | ||