Skip to content

Commit fd294f2

Browse files
committed
Re-enable ARM64 workflow
1 parent 43165ce commit fd294f2

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

.github/workflows/arm64-release.yml

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,34 @@
1-
name: ARM64 Release
1+
name: ARM64 (AArch64) Release
22

3-
# ARM64 tests disabled.
4-
# on:
5-
# pull_request:
6-
# push:
7-
# branches:
8-
# - master
9-
# - stable
10-
# - rc/**
11-
# tags:
12-
# - '**'
13-
# workflow_dispatch:
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
- stable
9+
- rc/**
10+
tags:
11+
- '**'
12+
workflow_dispatch:
1413

1514
jobs:
1615
arm64:
1716
name: Publish bindist
1817
runs-on: [self-hosted, linux, ARM64]
1918
steps:
2019
- name: Clone project
21-
uses: actions/checkout@v2
22-
- shell: bash
20+
uses: actions/checkout@v3
21+
- name: Build bindist
22+
shell: bash
2323
run: |
2424
set -ex
25-
2625
docker build . -f etc/dockerfiles/arm64.Dockerfile -t stack --build-arg USERID=$(id -u) --build-arg GROUPID=$(id -g)
2726
rm -rf _release
2827
mkdir -p _release
2928
docker run --rm -v $(pwd):/src -w /src stack bash -c "/home/stack/release build"
3029
3130
- name: Upload bindist
32-
uses: actions/upload-artifact@v2
31+
uses: actions/upload-artifact@v3
3332
with:
3433
name: Linux-ARM64
3534
path: _release/stack-*

0 commit comments

Comments
 (0)