solaris_ci #139
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: solaris_ci | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
build-native: | |
strategy: | |
matrix: | |
release: [11.4] | |
runs-on: macos-12 | |
continue-on-error: false | |
name: Solaris ${{ matrix.release }} | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@main | |
- name: Configure source | |
run: | | |
brew install automake autoconf libtool | |
./autogen.sh | |
- name: Build on VM | |
uses: vmactions/solaris-vm@v0 | |
with: | |
prepare: | | |
pkg install gcc make | |
run: | | |
MAKE=gmake ./configure | |
gmake -j2 check || (cat tests/test-suite.log && exit 1) |