forked from libsemigroups/libsemigroups
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (32 loc) · 942 Bytes
/
os.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
name: os
on: [pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
alpine:
defaults:
run:
shell: alpine.sh {0}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: jirutka/setup-alpine@v1
with:
branch: v3.15
- name: "Alpine/musl versions . . ."
run: |
cat /etc/alpine-release
apk info musl
- name: "Install autotools etc . . ."
run: |
apk add build-base autoconf automake libtool
shell: alpine.sh --root {0}
- name: "Configure . . ."
run: ./autogen.sh && ./configure
- name: "Build libsemigroups . . ."
run: make -j4
- name: "Build test_all . . ."
run: make check -j4
- name: "Run the quick tests . . ."
run: ./test_all "[quick]"