mirror of
https://git.tukaani.org/xz.git
synced 2025-11-03 06:52:54 +00:00
35 lines
768 B
YAML
35 lines
768 B
YAML
# SPDX-License-Identifier: 0BSD
|
|
|
|
name: Solaris
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
workflow_dispatch:
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
Solaris:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
name: Solaris
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Test in Solaris
|
|
uses: vmactions/solaris-vm@58cbd70c6e051860f9b8f65908cc582938fbbdba #v1.1.5
|
|
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
|