-
Notifications
You must be signed in to change notification settings - Fork 2
85 lines (85 loc) · 2.44 KB
/
build.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
82
83
84
85
name: PKGBUILD CI
on:
push:
workflow_dispatch:
jobs:
build_with_gcc_x86_64:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Makepkg Build and Check
id: makepkg
uses: edlanglois/[email protected]
with:
pkgdir: "gcc-x86-64-actiondir"
namcapDisable: 1
makepkgArgs: "--skippgpcheck --noconfirm -s"
- name: Release
uses: ncipollo/[email protected]
with:
allowUpdates: true
tag: "6.8.1-1-gcc-x86-64"
commit: master
artifacts: "./*/*.zst"
token: ${{ secrets.GITHUB_TOKEN }}
build_with_llvm_lto_x86_64:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Makepkg Build and Check
id: makepkg
uses: edlanglois/[email protected]
with:
pkgdir: "llvm-lto-x86-64-actiondir"
namcapDisable: 1
makepkgArgs: "--skippgpcheck --noconfirm -s"
- name: Release
uses: ncipollo/[email protected]
with:
allowUpdates: true
tag: "6.8.1-1-llvm-lto-x86-64"
commit: master
artifacts: "./*/*.zst"
token: ${{ secrets.GITHUB_TOKEN }}
build_with_gcc_x86_64_v3:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Makepkg Build and Check
id: makepkg
uses: edlanglois/[email protected]
with:
pkgdir: "gcc-x86-64-v3-actiondir"
namcapDisable: 1
makepkgArgs: "--skippgpcheck --noconfirm -s"
- name: Release
uses: ncipollo/[email protected]
with:
allowUpdates: true
tag: "6.8.1-1-gcc-x86-64-v3"
commit: master
artifacts: "./*/*.zst"
token: ${{ secrets.GITHUB_TOKEN }}
build_with_llvm_lto_x86_64_v3:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Makepkg Build and Check
id: makepkg
uses: edlanglois/[email protected]
with:
pkgdir: "llvm-lto-x86-64-v3-actiondir"
namcapDisable: 1
makepkgArgs: "--skippgpcheck --noconfirm -s"
- name: Release
uses: ncipollo/[email protected]
with:
allowUpdates: true
tag: "6.8.1-1-llvm-lto-x86-64-v3"
commit: master
artifacts: "./*/*.zst"
token: ${{ secrets.GITHUB_TOKEN }}