@@ -62,35 +62,34 @@ jobs:
62
62
}'
63
63
secrets : inherit
64
64
65
- # Uncomment this job when aarch64 runners will be up.
66
- # packaging-aarch64:
67
- # # Run on push to the 'master' and release branches of tarantool/tarantool
68
- # # or on pull request if the 'full-ci' or 'static-build-ci' label is set.
69
- # if: github.repository == 'tarantool/tarantool' &&
70
- # ( github.event_name != 'pull_request' ||
71
- # contains(github.event.pull_request.labels.*.name, 'full-ci') ||
72
- # contains(github.event.pull_request.labels.*.name, 'static-build-ci') )
73
- #
74
- # uses: ./.github/workflows/packaging_build_test_deploy.yml
75
- # with:
76
- # arch: aarch64
77
- # test-matrix: '{
78
- # "include": [
79
- # {"os": "debian-buster"}, {"os": "debian-bullseye"},
80
- # {"os": "centos-8"},
81
- # {"os": "fedora-35"}, {"os": "fedora-36"},
82
- # {"os": "ubuntu-focal"}, {"os": "ubuntu-jammy"}
83
- # ]
84
- # }'
85
- # secrets: inherit
65
+ packaging-aarch64 :
66
+ # Run on push to the 'master' and release branches of tarantool/tarantool
67
+ # or on pull request if the 'full-ci' or 'static-build-ci' label is set.
68
+ if : github.repository == 'tarantool/tarantool' &&
69
+ ( github.event_name != 'pull_request' ||
70
+ contains(github.event.pull_request.labels.*.name, 'full-ci') ||
71
+ contains(github.event.pull_request.labels.*.name, 'static-build-ci') )
72
+
73
+ uses : ./.github/workflows/packaging_build_test_deploy.yml
74
+ with :
75
+ arch : aarch64
76
+ test-matrix : ' {
77
+ "include": [
78
+ {"os": "debian-buster"}, {"os": "debian-bullseye"},
79
+ {"os": "centos-8"},
80
+ {"os": "fedora-35"}, {"os": "fedora-36"},
81
+ {"os": "ubuntu-focal"}, {"os": "ubuntu-jammy"}
82
+ ]
83
+ }'
84
+ secrets : inherit
86
85
87
86
docker :
88
87
# Run on push of a tag except '*-entrypoint' to tarantool/tarantool.
89
88
if : github.repository == 'tarantool/tarantool' &&
90
89
startsWith(github.ref, 'refs/tags/') &&
91
90
!endsWith(github.ref, '-entrypoint')
92
91
93
- needs : [ packaging-x86_64 ] # , packaging-aarch64 ]
92
+ needs : [ packaging-x86_64, packaging-aarch64 ]
94
93
95
94
uses : ./.github/workflows/docker_build_push.yml
96
95
secrets : inherit
0 commit comments