-
Notifications
You must be signed in to change notification settings - Fork 60
44 lines (39 loc) · 1.02 KB
/
Copy pathsolaris.yml
File metadata and controls
44 lines (39 loc) · 1.02 KB
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
40
41
42
43
name: "Solaris build"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '0 7 * * 2'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Repository checkout
uses: actions/checkout@v4
- name: Test on Solaris 11.4
uses: vmactions/solaris-vm@v1 # see https://github.com/vmactions/solaris-vm
with:
release: "11.4-gcc"
prepare: |
pkg publisher solaris
beadm list
pkg info entire
pkg list -af entire
pkg list -af gcc-7
pkg list -af gcc-11
pkgutil -y -u
pkgutil -y -i automake autoconf autoconf_archive libtool pkgconfig libcppunit1_12_1 libcppunit_dev gsed ggrep
mem: 6144
run: |
uname -a
whoami
pwd
cat /etc/release
PATH=/opt/csw/bin:$PATH
export PATH
c++ --version || true
autoreconf -v --install --force
./configure --prefix=/usr
gmake V=1 -j$(nproc)