Update .gitlab-ci.yml file
This commit is contained in:
parent
76a27f5b02
commit
d615f3b314
|
@ -29,10 +29,10 @@ stages:
|
||||||
- publish
|
- publish
|
||||||
|
|
||||||
build_dep_wheels:
|
build_dep_wheels:
|
||||||
tags: [docker, multiarch]
|
tags: [docker, $DOCKER_PLATFORM]
|
||||||
parallel:
|
parallel:
|
||||||
matrix:
|
matrix:
|
||||||
- DOCKER_PLATFORM: [amd64, arm64v8] # arm32v7, riscv64]
|
- DOCKER_PLATFORM: [amd64, arm64v8] #, arm32v7, riscv64]
|
||||||
image: ${DOCKER_PLATFORM}/alpine:3.17
|
image: ${DOCKER_PLATFORM}/alpine:3.17
|
||||||
before_script:
|
before_script:
|
||||||
- >
|
- >
|
||||||
|
@ -58,7 +58,9 @@ build_dep_wheels:
|
||||||
curl
|
curl
|
||||||
poetry
|
poetry
|
||||||
py3-pip
|
py3-pip
|
||||||
- poetry export --without-hashes > requirements.txt
|
- cd api
|
||||||
|
- poetry export --without-hashes > ../requirements.txt
|
||||||
|
- cd ..
|
||||||
- python -m venv venv
|
- python -m venv venv
|
||||||
- source venv/bin/activate
|
- source venv/bin/activate
|
||||||
- pip install --upgrade pip
|
- pip install --upgrade pip
|
||||||
|
|
Loading…
Reference in New Issue