forked from tukaani-project/xz
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (35 loc) · 1023 Bytes
/
solaris.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Solaris
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
solaris-test:
runs-on: ubuntu-latest
name: Test xz on Solaris
steps:
- uses: actions/checkout@v4
- name: Test in Solaris
id: test
uses: vmactions/[email protected]
with:
usesh: true
prepare: |
pkg install bash libtool automake gnu-m4 tree wget gcc autoconf
run: |
export LC_ALL=C LANG=C
printf "Dumping system information\n"
for cmd in 'freebsd-version' 'cat /etc/release' 'uname -a' 'cc --version' \
'gcc --version' 'clang --version' 'ld --version' \
'autoconf --version' 'automake --version' 'libtool --version' \
'gettext --version' ; do
printf "Running cmd: %s\n" ${cmd}
${cmd} || true
done
printf "\n\n"
./autogen.sh
./configure --enable-werror
make
make check VERBOSE=1