-
-
Notifications
You must be signed in to change notification settings - Fork 8
55 lines (53 loc) · 1.28 KB
/
lone.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
50
51
52
53
54
55
name: lone
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-and-test:
strategy:
fail-fast: false
matrix:
compiler:
- name: cc
env:
CC: cc
- name: gcc
env:
CC: gcc
- name: clang
env:
CC: clang
linker:
- name: ld
env:
LD: ld
- name: lld
env:
LD: lld
- name: mold
env:
LD: mold
- name: mold+spare-segments
env:
LD: mold
LDFLAGS: -Wl,--spare-program-headers,2
runs-on: ubuntu-latest
container: archlinux:base-devel
name: ${{ matrix.compiler.name }} ${{ matrix.linker.name }}
steps:
- name: Set up pacman keys
run: pacman-key --init
- name: Update and install packages
run: pacman -Syu --noconfirm clang lld llvm mold
- uses: actions/checkout@v4
- name: Build
run: make --jobs --output-sync
env:
CC: ${{ matrix.compiler.env.CC }}
LD: ${{ matrix.linker.env.LD }}
CFLAGS: ${{ matrix.compiler.env.CFLAGS }}
LDFLAGS: ${{ matrix.linker.env.LDFLAGS }}
- name: Test
run: make test