diff options
author | Alexander Færøy <ahf@torproject.org> | 2021-09-13 18:05:58 +0200 |
---|---|---|
committer | Alexander Færøy <ahf@torproject.org> | 2021-09-13 18:08:49 +0200 |
commit | 84d6f977e72aa71c19c65c9a8fa3ff922854510b (patch) | |
tree | 6494f8892d855a9ac9b87dad2bb70c5baf3fbd0b | |
parent | a8ce645ab04928585d1bd131fa4eb7a5787b9ca7 (diff) | |
download | tor-84d6f977e72aa71c19c65c9a8fa3ff922854510b.tar.gz tor-84d6f977e72aa71c19c65c9a8fa3ff922854510b.zip |
Force amd64 for CI builds.
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1e9d03caf5..915f242f26 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -37,6 +37,12 @@ variables: paths: - artifacts/ + +# This template is used for x86-64 builds. +.x86-64-template: &x86-64-template + tags: + - amd64 + # This template should be usable on any system that's based on apt. .apt-template: &apt-template | export LC_ALL=C.UTF-8 @@ -57,6 +63,7 @@ variables: # This template sets us up for Debian system in particular. .debian-template: &debian-template <<: *artifacts-template + <<: *x86-64-template variables: DEBIAN_FRONTEND: "noninteractive" # TODO: Using "cache" in this way speeds up our downloads. It would be |