Skip to content
Snippets Groups Projects
Commit 3d1a5cb2 authored by Shivam Khandelwal's avatar Shivam Khandelwal
Browse files

Merge branch 'infinite_wave' into 'master'

build flatland-rl wheel on python3.7 and expose as artifact

See merge request flatland/flatland!315
parents b373c43a 26b5023f
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,7 @@ image: themattrix/tox ...@@ -10,6 +10,7 @@ image: themattrix/tox
## - AWS_SECRET_ACCESS_KEY ## - AWS_SECRET_ACCESS_KEY
stages: stages:
- build_wheel
- tests - tests
- integration_testing - integration_testing
- profiling - profiling
...@@ -149,4 +150,18 @@ test_conda_setup: ...@@ -149,4 +150,18 @@ test_conda_setup:
script: script:
- xvfb-run bash getting_started/getting_started.sh - xvfb-run bash getting_started/getting_started.sh
build_wheel:
image: "python:3.7-slim"
stage: build_wheel
before_script:
- apt update
- apt install -y make
- pip install -r requirements_dev.txt
script:
- make dist
- export WHEEL_NAME="$( find dist -name 'flatland_rl*.whl' )"
- mv "${WHEEL_NAME}" "${WHEEL_NAME/-py2.py3-/-py3-}"
artifacts:
paths:
- dist/flatland_rl*.whl
expire_in: 2 mos
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment