-
Notifications
You must be signed in to change notification settings - Fork 55
50 lines (45 loc) · 988 Bytes
/
alpine.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
40
41
42
43
44
45
46
47
48
49
name: "Alpine Linux 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@v3
- name: Install latest Alpine Linux
uses: jirutka/setup-alpine@v1
with:
arch: x86_64
branch: latest-stable
packages: >
gcc
g++
make
automake
autoconf
autoconf-archive
libtool
pkgconf
gpm
gpm-dev
linux-headers
ncurses-dev
ncurses-terminfo
cppunit
- name: Test on Alpine Linux environment
run: |
uname -a
whoami
pwd
g++ --version
autoreconf --force --install --verbose --warnings=all
automake --add-missing --copy
./configure --prefix=/usr
make -j10
shell: alpine.sh {0}