-
Notifications
You must be signed in to change notification settings - Fork 0
81 lines (62 loc) · 1.67 KB
/
makefile.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: Makefile CI
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- name: build
run: make build
working-directory: go-metabuild
- name: Archive build results
uses: actions/upload-artifact@v3
with:
name: results
path: ./*
lincity:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- name: install packages
run: sudo apt-get install -y gettext
- name: clone lincity
uses: actions/checkout@v3
with:
repository: oss-qm/lincity
path: lincity
ref: master
- name: test lincity
run: make test-lincity
working-directory: go-metabuild
xfwm4:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- name: install packages
run: sudo apt-get install -y gettext libx11-6 libxinerama-dev libxfce4ui-2-dev libxfconf-0-dev libgtk-3-dev libxres-dev libwnck-3-dev
- name: clone xfwm4
run: git clone -b sub/testing-6 https://gitlab.xfce.org/metux/xfwm4.git xfwm4
- name: test xfm4
run: make test-xfwm4
working-directory: go-metabuild
zlib:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- name: clone zlib
uses: actions/checkout@v3
with:
repository: oss-qm/zlib
path: zlib
ref: wip/metabuild
- name: test zlib
run: make test-zlib
working-directory: go-metabuild