-
Notifications
You must be signed in to change notification settings - Fork 1
137 lines (122 loc) · 4.58 KB
/
build-and-publish.yaml
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
name: Build and publish nightly
on:
push:
branches:
- 'master'
jobs:
linux:
name: Linux build
runs-on: ubuntu-latest
env:
PREFIX: "/usr"
GNU_MIRROR: "https://mirror.checkdomain.de/gnu"
NEWLIB_MIRROR: "https://ftp.gwdg.de/pub/linux/sources.redhat.com"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Dependencies
run: >
sudo apt-get install pkg-config gcc g++ flex bison gawk
gettext bzip2 lzma xz-utils libboost-dev libexpat1-dev
libgc-dev libgmp-dev zlib1g-dev libipt-dev libmpc-dev
libmpfr-dev libncurses5-dev libreadline-dev texinfo
- name: Build
run: ./.github/scripts/build.sh
macos:
name: macOS build
runs-on: macos-latest
env:
PREFIX: "/usr/local/ngdevkit"
GNU_MIRROR: "https://mirror.checkdomain.de/gnu"
NEWLIB_MIRROR: "https://ftp.gwdg.de/pub/linux/sources.redhat.com"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Dependencies
run: >
brew install -q autoconf automake bison boost bzip2 coreutils gawk
libtool make pkg-config readline texinfo expat flex gettext
gmp gnu-sed libmpc mpfr ncurses xz zlib zstd
- name: Build
run: ./.github/scripts/build.sh
deploy_deb:
name: "deb: trigger Launchpad rebuild"
runs-on: ubuntu-latest
needs: [linux, macos]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: "Launchpad: trigger nightly deb rebuild"
run: .ci/trigger-launchpad-build.sh --slug="~dciabrin/ngdevkit/+git/ngdevkit-toolchain" --name="Travis%20Deploy"
env:
LAUNCHPAD_TOKEN: ${{ secrets.LAUNCHPAD_TOKEN }}
LAUNCHPAD_TOKEN_SECRET: ${{ secrets.LAUNCHPAD_TOKEN_SECRET }}
deploy_rpm:
name: "rpm: trigger COPR rebuild"
needs: [linux, macos]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: "COPR: push new nightly revision"
run: |
git config --global user.name 'CI build bot'
git config --global user.email '<>'
git config --global url."https://api@github.com/".insteadOf "https://github.com/"
git clone https://github.com/dciabrin/copr-ngdevkit .ci/copr-ngdevkit
.ci/copr-ngdevkit/.ci/bump-project-nightly-build.sh ngdevkit-toolchain
.ci/copr-ngdevkit/.ci/trigger-copr-build.sh --package ngdevkit-toolchain
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
COPR_SECRET: ${{ secrets.COPR_SECRET }}
LAUNCHPAD_TOKEN: ${{ secrets.LAUNCHPAD_TOKEN }}
LAUNCHPAD_TOKEN_SECRET: ${{ secrets.LAUNCHPAD_TOKEN_SECRET }}
deploy_brew:
name: "brew: trigger bottle rebuild"
runs-on: ubuntu-latest
needs: [linux, macos]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: "Brew: push new nightly revision and bottle"
run: |
git config --global user.name 'CI build bot'
git config --global user.email '<>'
git config --global url."https://api@github.com/".insteadOf "https://github.com/"
git clone https://github.com/dciabrin/homebrew-ngdevkit .ci/homebrew-ngdevkit
.ci/homebrew-ngdevkit/.ci/bump-project-nightly-build.sh --package ngdevkit-toolchain --batch
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
deploy_msys2:
name: "msys2: trigger package rebuild"
needs: [linux, macos]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: "MSYS2: push new nightly revision and rebuild package repository"
run: |
git config --global user.name 'CI build bot'
git config --global user.email '<>'
git config --global url."https://api@github.com/".insteadOf "https://github.com/"
git clone https://github.com/dciabrin/msys2-ngdevkit .ci/msys2-ngdevkit
.ci/msys2-ngdevkit/.ci/bump-project-nightly-build.sh --package ngdevkit-toolchain --batch
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
cleanup_tags:
name: "Cleanup tags and artefacts"
runs-on: ubuntu-latest
needs: [deploy_deb, deploy_rpm, deploy_brew, deploy_msys2]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: "Cleanup old nightly tags"
run: .ci/gc-nightly-tags.sh --user=dciabrin --repo=ngdevkit-toolchain --tag-regex='^refs/tags/nightly-[0-9]*'
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}