Translations: Update Chinese (simplified) translation
[xz.git] / .github / workflows / solaris.yml
blobfa2f703bd84eaf40cc394281b161e387cac19d65
1 # SPDX-License-Identifier: 0BSD
3 name: Solaris
5 on:
6   push:
7     branches: [ master ]
8   pull_request:
9     branches: [ master ]
10   workflow_dispatch:
12 jobs:
13   solaris-test:
14     runs-on: ubuntu-latest
15     name: Test xz on Solaris
16     steps:
17     - uses: actions/checkout@v4.1.6
18     - name: Test in Solaris
19       id: test
20       uses: vmactions/solaris-vm@548f790d1bc2b9342a76cbb47ddbb85875605559 #v1.0.2
21       with:
22         usesh: true
23         prepare: |
24           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
25         run: |
26           set -e
27           export LC_ALL=C LANG=C
28           uname -a
29           ./autogen.sh --no-po4a
30           ./configure --enable-werror
31           make
32           make check VERBOSE=1