1
0
mirror of https://git.tukaani.org/xz.git synced 2025-04-20 06:30:50 +00:00

CI: Update Solaris

This commit is contained in:
Lasse Collin 2025-04-17 20:36:33 +03:00
parent cfcaae1945
commit 07dc509137
No known key found for this signature in database
GPG Key ID: 38EE757D69184620

View File

@ -9,24 +9,25 @@ on:
branches: [ master ] branches: [ master ]
workflow_dispatch: workflow_dispatch:
permissions: {}
jobs: jobs:
solaris-test: Solaris:
runs-on: ubuntu-latest runs-on: ubuntu-latest
name: Test xz on Solaris name: Solaris
steps: steps:
- uses: actions/checkout@v4.1.6 - uses: actions/checkout@v4
- name: Test in Solaris
id: test - name: Test in Solaris
uses: vmactions/solaris-vm@960d7483ffd6ac03397964cf6423a2f41332c9c8 #v1.0.9 uses: vmactions/solaris-vm@cc8f82fa1a7cc746153ec3f71bf11f311f16e225 #v1.1.1
with: with:
usesh: true release: 11.4-gcc
prepare: | usesh: true
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: |
run: | set -e
set -e uname -a
export LC_ALL=C LANG=C # /usr/xpg4/bin isn't in PATH by default.
uname -a echo "Environment variable PATH: $PATH"
./autogen.sh --no-po4a ./autogen.sh --no-po4a
./configure --enable-werror ./configure --disable-static --enable-debug --enable-werror
make make check
make check VERBOSE=1