From 07dc50913725496bd89178539190292a66e18710 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Thu, 17 Apr 2025 20:36:33 +0300 Subject: [PATCH] CI: Update Solaris --- .github/workflows/solaris.yml | 37 ++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/.github/workflows/solaris.yml b/.github/workflows/solaris.yml index f5910da6..f7d109fe 100644 --- a/.github/workflows/solaris.yml +++ b/.github/workflows/solaris.yml @@ -9,24 +9,25 @@ on: branches: [ master ] workflow_dispatch: +permissions: {} + jobs: - solaris-test: + Solaris: runs-on: ubuntu-latest - name: Test xz on Solaris + name: Solaris steps: - - uses: actions/checkout@v4.1.6 - - name: Test in Solaris - id: test - uses: vmactions/solaris-vm@960d7483ffd6ac03397964cf6423a2f41332c9c8 #v1.0.9 - with: - usesh: true - prepare: | - pkg install bash libtool automake gnu-m4 tree wget gcc autoconf //solaris/text/gawk pkg://solaris/text/gnu-diffutils pkg://solaris/text/gnu-grep pkg://solaris/text/gnu-sed - run: | - set -e - export LC_ALL=C LANG=C - uname -a - ./autogen.sh --no-po4a - ./configure --enable-werror - make - make check VERBOSE=1 + - uses: actions/checkout@v4 + + - name: Test in Solaris + uses: vmactions/solaris-vm@cc8f82fa1a7cc746153ec3f71bf11f311f16e225 #v1.1.1 + with: + release: 11.4-gcc + usesh: true + run: | + set -e + uname -a + # /usr/xpg4/bin isn't in PATH by default. + echo "Environment variable PATH: $PATH" + ./autogen.sh --no-po4a + ./configure --disable-static --enable-debug --enable-werror + make check