forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 22
222 lines (204 loc) · 7.44 KB
/
groestlcoin.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
name: Build
on:
push:
paths-ignore:
- '**/*.md'
pull_request:
paths-ignore:
- 'doc/**'
- 'contrib/**'
- '**/*.md'
jobs:
build:
name: ${{ matrix.name }}
env:
CMAKEJOBS: "4"
MAKEJOBS: "-j4"
SDK_URL: https://bitcoincore.org/depends-sources/sdks
strategy:
fail-fast: false
matrix:
name:
- linux-32-bit
- linux-64-bit
- windows-64-bit
- macos-intel-64-bit
- macos-arm-64-bit
- linux-arm-32-bit
- linux-arm-64-bit
- linux-power-64-bit
- linux-power-le-64-bit
- linux-riscv-64-bit
- linux-s390x
include:
- name: linux-32-bit
host: i686-pc-linux-gnu
os: ubuntu-24.04
packages: ""
check-security: false
check-symbols: false
dep-opts: ""
config-opts: "LDFLAGS=-static-libstdc++"
goal: build
- name: linux-64-bit
host: x86_64-pc-linux-gnu
os: ubuntu-24.04
packages: ""
check-security: false
check-symbols: false
dep-opts: ""
config-opts: "LDFLAGS=-static-libstdc++"
goal: build
- name: windows-64-bit
host: x86_64-w64-mingw32
arch: "i386"
os: ubuntu-24.04
packages: cmake curl g++ git make pkg-config nsis g++-mingw-w64-x86-64-posix build-essential bsdmainutils wine-binfmt binfmt-support wine64 wine32
postinstall: |
sudo update-alternatives --set x86_64-w64-mingw32-gcc /usr/bin/x86_64-w64-mingw32-gcc-posix
sudo update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix
sudo update-binfmts --import /usr/share/binfmts/wine
check-security: false
check-symbols: false
dep-opts: ""
config-opts: "LDFLAGS=-static-libgcc"
goal: build
- name: macos-intel-64-bit
host: x86_64-apple-darwin
os: ubuntu-24.04
packages: clang lld llvm g++ zip curl bsdmainutils cmake libz-dev python3-setuptools libtinfo6 xorriso
check-security: false
check-symbols: false
dep-opts: ""
config-opts: ""
goal: deploy
sdk: 15.0-15A240d
- name: macos-arm-64-bit
host: arm64-apple-darwin
os: ubuntu-24.04
packages: clang lld llvm g++ zip curl bsdmainutils cmake libz-dev python3-setuptools libtinfo6 xorriso
check-security: false
check-symbols: false
dep-opts: ""
config-opts: ""
goal: deploy
sdk: 15.0-15A240d
- name: linux-arm-32-bit
host: arm-linux-gnueabihf
os: ubuntu-24.04
packages: g++-arm-linux-gnueabihf binutils-arm-linux-gnueabihf
check-security: false
check-symbols: false
dep-opts: ""
config-opts: "LDFLAGS=-static-libstdc++"
goal: build
- name: linux-arm-64-bit
host: aarch64-linux-gnu
os: ubuntu-24.04
packages: g++-aarch64-linux-gnu binutils-aarch64-linux-gnu
check-security: false
check-symbols: false
dep-opts: ""
config-opts: "LDFLAGS=-static-libstdc++"
goal: build
- name: linux-power-64-bit
host: powerpc64-linux-gnu
os: ubuntu-24.04
packages: g++-powerpc64-linux-gnu binutils-powerpc64-linux-gnu
check-security: false
check-symbols: false
dep-opts: ""
config-opts: "LDFLAGS=-static-libstdc++"
goal: build
- name: linux-power-le-64-bit
host: powerpc64le-linux-gnu
os: ubuntu-24.04
packages: g++-powerpc64le-linux-gnu binutils-powerpc64le-linux-gnu
check-security: false
check-symbols: false
dep-opts: ""
config-opts: "LDFLAGS=-static-libstdc++"
goal: build
- name: linux-riscv-64-bit
host: riscv64-linux-gnu
os: ubuntu-24.04
packages: g++-riscv64-linux-gnu binutils-riscv64-linux-gnu
check-security: false
check-symbols: false
dep-opts: ""
config-opts: "LDFLAGS=-static-libstdc++"
goal: build
- name: linux-s390x
host: s390x-linux-gnu
os: ubuntu-24.04
packages: g++-s390x-linux-gnu binutils-s390x-linux-gnu
check-security: false
check-symbols: false
dep-opts: ""
config-opts: "LDFLAGS=-static-libstdc++"
goal: build
runs-on: ${{ matrix.os }}
steps:
- name: Add architecture
if: ${{ matrix.arch }}
run: |
sudo dpkg --add-architecture "${{ matrix.arch }}"
- name: Install packages
run: |
sudo apt-get update
sudo apt-get install automake bison cmake curl libtool make patch pkg-config python3 xz-utils g++-multilib binutils bsdmainutils
sudo apt-get install ${{ matrix.packages }}
- name: Post install
if: ${{ matrix.postinstall }}
run: ${{ matrix.postinstall }}
- name: Checkout
uses: actions/checkout@v4
- name: SDK cache
if: ${{ matrix.sdk }}
uses: actions/cache@v4
env:
cache-name: sdk
with:
path: ./depends/sdk-sources
key: ${{ matrix.name }}-${{ env.cache-name }}
- name: Install SDK
if: ${{ matrix.sdk }}
run: |
mkdir -p ./depends/sdk-sources
mkdir -p ./depends/SDKs
curl --location --fail $SDK_URL/Xcode-${{ matrix.sdk }}-extracted-SDK-with-libcxx-headers.tar.gz -o depends/sdk-sources/Xcode-${{ matrix.sdk }}-extracted-SDK-with-libcxx-headers.tar.gz
tar -C depends/SDKs -xf depends/sdk-sources/Xcode-${{ matrix.sdk }}-extracted-SDK-with-libcxx-headers.tar.gz
- name: Dependency cache
uses: actions/cache@v4
env:
cache-name: depends
with:
path: ./depends/built
key: ${{ matrix.name }}-${{ env.cache-name }}-${{ hashFiles('depends/packages/*') }}
- name: Build depends
run: |
make $MAKEJOBS -C depends HOST=${{ matrix.host }} ${{ matrix.dep-opts }}
- name: Build Groestlcoin
run: |
cmake -B ${{ matrix.goal }} --toolchain `pwd`/depends/${{ matrix.host }}/toolchain.cmake -DREDUCE_EXPORTS=ON
cmake --build ${{ matrix.goal }} -j $CMAKEJOBS
cmake --install ${{ matrix.goal }} --prefix `pwd`/depends/${{ matrix.host }}
- name: Check security
if: ${{ matrix.check-security }}
run: cmake --build build --target check-security
- name: Check symbols
if: ${{ matrix.check-symbols }}
run: cmake --build build --target check-symbols
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: groestlcoin-${{ github.sha }}-${{ matrix.name }}
path: |
depends/${{ matrix.host }}/bin/groestlcoin*
dist/Groestlcoin-Qt.app
if-no-files-found: error
retention-days: 7
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: groestlcoin-${{ github.sha }}-${{ matrix.name }}