From d615f3b314b5ac58f97c7182bb81c88856569320 Mon Sep 17 00:00:00 2001 From: JuniorJPDJ Date: Thu, 17 Nov 2022 20:27:19 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 025089890..890a892ef 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,10 +29,10 @@ stages: - publish build_dep_wheels: - tags: [docker, multiarch] + tags: [docker, $DOCKER_PLATFORM] parallel: matrix: - - DOCKER_PLATFORM: [amd64, arm64v8] # arm32v7, riscv64] + - DOCKER_PLATFORM: [amd64, arm64v8] #, arm32v7, riscv64] image: ${DOCKER_PLATFORM}/alpine:3.17 before_script: - > @@ -58,7 +58,9 @@ build_dep_wheels: curl poetry py3-pip - - poetry export --without-hashes > requirements.txt + - cd api + - poetry export --without-hashes > ../requirements.txt + - cd .. - python -m venv venv - source venv/bin/activate - pip install --upgrade pip