Skip to content

Commit

Permalink
ci: reenable and clean up solaris workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuasing committed Dec 15, 2023
1 parent f6f90b9 commit 77f1dbb
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 28 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/solaris.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# GitHub Actions workflow to run tests on a Solaris VM.
name: "Solaris"

on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *" # At 00:00 daily.

jobs:
test:
name: "Solaris"
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: "Checkout repository"
uses: actions/checkout@v4

- name: "Setup"
run: |
apt-get install automake autoconf libtool
./autogen.sh
- name: "Build on VM"
uses: vmactions/solaris-vm@v1
with:
prepare: |
pkg install gcc make
run: |
MAKE=gmake ./configure
gmake -j2 check || (cat tests/test-suite.log && exit 1)
28 changes: 0 additions & 28 deletions .github/workflows/solaris_test.yml

This file was deleted.

0 comments on commit 77f1dbb

Please sign in to comment.