File tree Expand file tree Collapse file tree 1 file changed +15
-16
lines changed Expand file tree Collapse file tree 1 file changed +15
-16
lines changed Original file line number Diff line number Diff line change 1
- name : ARM64 Release
1
+ name : ARM64 (AArch64) Release
2
2
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 :
14
13
15
14
jobs :
16
15
arm64 :
17
16
name : Publish bindist
18
17
runs-on : [self-hosted, linux, ARM64]
19
18
steps :
20
19
- name : Clone project
21
- uses : actions/checkout@v2
22
- - shell : bash
20
+ uses : actions/checkout@v3
21
+ - name : Build bindist
22
+ shell : bash
23
23
run : |
24
24
set -ex
25
-
26
25
docker build . -f etc/dockerfiles/arm64.Dockerfile -t stack --build-arg USERID=$(id -u) --build-arg GROUPID=$(id -g)
27
26
rm -rf _release
28
27
mkdir -p _release
29
28
docker run --rm -v $(pwd):/src -w /src stack bash -c "/home/stack/release build"
30
29
31
30
- name : Upload bindist
32
- uses : actions/upload-artifact@v2
31
+ uses : actions/upload-artifact@v3
33
32
with :
34
33
name : Linux-ARM64
35
34
path : _release/stack-*
You can’t perform that action at this time.
0 commit comments