Skip to content

Commit 655eefc

Browse files
committed
Revert "ci: temporary disable aarch64 packaging job"
This reverts commit ef3152c. We have solved the issues with aarch64 runners, so we can enable back aarch64 jobs. NO_DOC=ci NO_TEST=ci NO_CHANGELOG=ci
1 parent 9b81784 commit 655eefc

File tree

1 file changed

+21
-22
lines changed

1 file changed

+21
-22
lines changed

.github/workflows/distrib.yml

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -62,35 +62,34 @@ jobs:
6262
}'
6363
secrets: inherit
6464

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
8685

8786
docker:
8887
# Run on push of a tag except '*-entrypoint' to tarantool/tarantool.
8988
if: github.repository == 'tarantool/tarantool' &&
9089
startsWith(github.ref, 'refs/tags/') &&
9190
!endsWith(github.ref, '-entrypoint')
9291

93-
needs: [ packaging-x86_64 ] #, packaging-aarch64 ]
92+
needs: [ packaging-x86_64, packaging-aarch64 ]
9493

9594
uses: ./.github/workflows/docker_build_push.yml
9695
secrets: inherit

0 commit comments

Comments
 (0)