Skip to content

Commit d8cef4e

Browse files
committed
Update release CI
1 parent 8127279 commit d8cef4e

File tree

1 file changed

+58
-101
lines changed

1 file changed

+58
-101
lines changed

.github/workflows/integration-tests.yml

Lines changed: 58 additions & 101 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,11 @@
11
name: Integration tests
22

33
on:
4-
pull_request:
54
push:
6-
branches:
7-
- master
8-
- stable
9-
- rc/**
105
tags:
116
- '**'
127
workflow_dispatch:
138

14-
# Stack will use the value of the GH_TOKEN environment variable to authenticate
15-
# its requests of the GitHub REST API, providing a higher request rate limit.
16-
env:
17-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18-
199
# As of 6 May 2024, ubuntu-latest and windows-latest come with Stack 2.15.5 and
2010
# GHC 9.8.2. However, macos-13 and macos-latest do not come with Haskell tools.
2111
# windows-latest comes with NSIS 3.08, for which the default value of the
@@ -160,79 +150,71 @@ jobs:
160150
name: ${{ runner.os }}-${{ runner.arch }}
161151
path: _release/stack-*
162152

163-
configuration:
164-
name: Check for self-hosted runners
165-
runs-on: ubuntu-latest
166-
env:
167-
CAN_SIGN: ${{ secrets.RELEASE_SIGNING_KEY != '' }}
168-
outputs:
169-
arm64-runner: ${{ steps.runners.outputs.arm64 }}
170-
can-sign: ${{ env.CAN_SIGN }}
171-
test-arm64: ${{ steps.runners.outputs.test-arm64 }}
172-
steps:
173-
- name: Check for hosted runners
174-
id: runners
175-
shell: bash
176-
env:
177-
SELF_HOSTED_RUNNERS: ${{ secrets.SELF_HOSTED_RUNNERS || (github.repository_owner == 'commercialhaskell' && 'arm64') }}
178-
run: |
179-
echo "runners=$SELF_HOSTED_RUNNERS" >> $GITHUB_OUTPUT
180-
if echo "$SELF_HOSTED_RUNNERS" | grep -q 'arm64'; then
181-
echo "arm64=['self-hosted', 'linux', 'ARM64']" >> $GITHUB_OUTPUT
182-
echo "test-arm64=true" >> $GITHUB_OUTPUT
183-
else
184-
echo "arm64='ubuntu-latest'" >> $GITHUB_OUTPUT
185-
echo "test-arm64=false" >> $GITHUB_OUTPUT
186-
fi
187-
188153
linux-arm64:
189154
name: Linux ARM64
190-
runs-on: ${{ fromJSON(needs.configuration.outputs.arm64-runner) }}
191-
needs: configuration
155+
runs-on: [self-hosted, Linux, ARM64, maerwald]
192156
steps:
193-
- name: Skipping ARM64
194-
if: needs.configuration.outputs.test-arm64 == 'false'
195-
shell: bash
196-
run: |
197-
echo '::notice title=ARM64 skipped::To build ARM64, a self-hosted runner needs to be configured and the SELF_HOSTED_RUNNERS secret must contain arm64'
198-
- name: Clone project
199-
if: needs.configuration.outputs.test-arm64 == 'true'
200-
uses: actions/checkout@v4
201-
- name: Install deps
202-
shell: bash
203-
run: |
204-
set -ex
157+
- name: git config
158+
run: |
159+
git config --global --get-all safe.directory | grep '^\*$' || git config --global --add safe.directory "*"
160+
shell: bash
205161

206-
# As of 11 July 2024, the self-hosted runner comes with Stack 2.15.7,
207-
# but it is not on the PATH. Logging the version for information.
208-
/usr/local/bin/stack --version
162+
- name: Checkout code
163+
uses: actions/checkout@v4
164+
with:
165+
submodules: 'true'
209166

210-
set +ex
211-
- name: Build bindist
212-
if: needs.configuration.outputs.test-arm64 == 'true'
213-
shell: bash
214-
run: |
215-
# Stack's project-level configuration (stack.yaml) specifies the
216-
# multi-architecture (including Linux/Aarch64) Docker image published by
217-
# Oliver Benz (@benz0li, on GitHub). That image comes with Stack 2.15.7.
218-
# (Note that the online documentation for '--docker-stack-exe image'
219-
# specifies that the host Stack and image Stack must have the same
220-
# version number.)
221-
/usr/local/bin/stack etc/scripts/release.hs build --alpine --stack-args --docker-stack-exe=image
167+
- name: Run build (aarch64 linux)
168+
run: |
169+
export CI_PROJECT_DIR="${GITHUB_WORKSPACE}"
170+
export GHCUP_INSTALL_BASE_PREFIX="$CI_PROJECT_DIR"
171+
export GHCUP_BIN="$GHCUP_INSTALL_BASE_PREFIX/.ghcup/bin"
172+
export PATH="$GHCUP_BIN:$PATH"
173+
export CABAL_DIR="$CI_PROJECT_DIR/cabal"
174+
export STACK_ROOT="${GITHUB_WORKSPACE}"/.stack
175+
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_ADJUST_CABAL_CONFIG=yes sh
176+
ghcup -s https://raw.githubusercontent.com/haskell/ghcup-metadata/develop/ghcup-vanilla-0.0.8.yaml run --install --stack=latest -- stack --allow-different-user etc/scripts/release.hs build --allow-dirty --alpine --stack-args --docker-stack-exe=image
222177
223-
- name: Upload bindist
224-
if: needs.configuration.outputs.test-arm64 == 'true'
225-
uses: actions/upload-artifact@v4
226-
with:
227-
name: Linux-ARM64
228-
path: _release/stack-*
178+
- name: Upload bindist
179+
uses: actions/upload-artifact@v4
180+
with:
181+
name: Linux-ARM64
182+
path: _release/stack-*
183+
184+
freebsd-x64:
185+
name: FreeBSD X64
186+
runs-on: [self-hosted, FreeBSD, X64]
187+
steps:
188+
- name: Checkout code
189+
uses: actions/checkout@v3
190+
with:
191+
submodules: 'true'
192+
193+
- name: Run build
194+
run: |
195+
sed -i.bak -e 's/quarterly/latest/' /etc/pkg/FreeBSD.conf
196+
pkg install -y ghc gcc curl git bash misc/compat10x misc/compat11x misc/compat12x gmake libiconv devel/stack
197+
tzsetup Etc/GMT
198+
adjkerntz -a
199+
export CI_PROJECT_DIR="${GITHUB_WORKSPACE}"
200+
export GHCUP_INSTALL_BASE_PREFIX="$CI_PROJECT_DIR"
201+
export GHCUP_BIN="$GHCUP_INSTALL_BASE_PREFIX/.ghcup/bin"
202+
export PATH="$GHCUP_BIN:$PATH"
203+
export CABAL_DIR="$CI_PROJECT_DIR/cabal"
204+
export STACK_ROOT="${GITHUB_WORKSPACE}"/.stack
205+
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_ADJUST_CABAL_CONFIG=yes sh
206+
stack etc/scripts/release.hs build --allow-dirty
207+
- name: Upload bindist
208+
uses: actions/upload-artifact@v4
209+
with:
210+
name: FreeBSD-X64
211+
path: _release/stack-*
229212

230213
github-release:
231214
name: Create GitHub release
232215
permissions:
233216
contents: write
234217
needs:
235-
- configuration
236218
- integration-tests
237219
- linux-arm64
238220
runs-on: ubuntu-latest
@@ -259,27 +241,25 @@ jobs:
259241
name: Windows-X64
260242
path: _release
261243
- name: Download Linux/AArch64 artifact
262-
if: needs.configuration.outputs.test-arm64 == 'true'
263244
uses: actions/download-artifact@v4
264245
with:
265246
name: Linux-ARM64
266247
path: _release
248+
- name: Download FreeBSD/X64 artifact
249+
uses: actions/download-artifact@v4
250+
with:
251+
name: FreeBSD-X64
252+
path: _release
267253
- name: Hash and sign assets
268-
if: needs.configuration.outputs.can-sign == 'true'
269254
shell: bash
270-
env:
271-
RELEASE_SIGNING_KEY: ${{ secrets.RELEASE_SIGNING_KEY }}
272255
run: |
273256
set -e
274-
echo "$RELEASE_SIGNING_KEY"|gpg --import
275257
cd _release
276258
for asset in *; do
277259
shasum -a 256 "$asset" >"$asset.sha256"
278-
gpg --digest-algo=sha512 --detach-sig --armor -u 0x575159689BEFB442 "$asset"
279260
done
280261
- name: Create GitHub release (final)
281262
id: github_release_final
282-
if: "!startsWith(github.ref, 'refs/tags/rc/')"
283263
uses: ncipollo/[email protected]
284264
env:
285265
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -296,19 +276,7 @@ jobs:
296276
[INSERT CONTRIBUTORS]
297277
draft: true
298278
prerelease: false
299-
- name: Create GitHub release (release candidate)
300-
id: github_release_rc
301-
if: "startsWith(github.ref, 'refs/tags/rc/')"
302-
uses: ncipollo/[email protected]
303-
env:
304-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
305-
with:
306-
body: |
307-
**Changes since v[INSERT PREVIOUS VERSION]:**
308279

309-
[INSERT CHANGELOG]
310-
draft: true
311-
prerelease: true
312280
- name: Upload assets to GitHub release (final)
313281
if: "!startsWith(github.ref, 'refs/tags/rc/')"
314282
uses: xresloader/upload-to-github-release@v1
@@ -320,14 +288,3 @@ jobs:
320288
prerelease: false
321289
overwrite: true
322290
release_id: ${{ steps.github_release_final.outputs.id }}
323-
- name: Upload assets to GitHub release (release candidate)
324-
if: "startsWith(github.ref, 'refs/tags/rc/')"
325-
uses: xresloader/upload-to-github-release@v1
326-
env:
327-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
328-
with:
329-
file: "_release/*"
330-
draft: true
331-
prerelease: true
332-
overwrite: true
333-
release_id: ${{ steps.github_release_rc.outputs.id }}

0 commit comments

Comments
 (0)