haruhi-dl/.gitlab-ci.yml

85 lines
1.7 KiB
YAML
Raw Normal View History

2020-10-31 21:42:52 +01:00
default:
before_script:
2021-09-09 12:38:11 +02:00
- sed -i "s@dl-cdn.alpinelinux.org@alpine.sakamoto.pl@g" /etc/apk/repositories
2020-10-31 21:42:52 +01:00
- apk add bash
- pip install nose
2021-03-04 12:01:19 +01:00
pypy3.6-core:
image: pypy:3.6-slim
variables:
HDL_TEST_SET: core
before_script:
- apt-get update && apt-get install -y bash && apt-get clean
- pip install nose
script:
- ./devscripts/run_tests.sh
pypy3.7-core:
image: pypy:3.7-slim
variables:
HDL_TEST_SET: core
before_script:
- apt-get update && apt-get install -y bash && apt-get clean
- pip install nose
script:
- ./devscripts/run_tests.sh
2020-10-31 21:42:52 +01:00
py3.6-core:
image: python:3.6-alpine
variables:
HDL_TEST_SET: core
2020-10-31 21:42:52 +01:00
script:
- ./devscripts/run_tests.sh
py3.7-core:
image: python:3.7-alpine
variables:
HDL_TEST_SET: core
2020-10-31 21:42:52 +01:00
script:
- ./devscripts/run_tests.sh
py3.8-core:
image: python:3.8-alpine
variables:
HDL_TEST_SET: core
2020-10-31 21:42:52 +01:00
script:
- ./devscripts/run_tests.sh
py3.9-core:
image: python:3.9-alpine
variables:
HDL_TEST_SET: core
2020-10-31 21:42:52 +01:00
script:
- ./devscripts/run_tests.sh
py3.9-download:
image: python:3.9-alpine
variables:
HDL_TEST_SET: download
2020-10-31 21:42:52 +01:00
allow_failure: true
script:
- ./devscripts/run_tests.sh
2020-11-02 11:46:47 +01:00
2021-01-18 22:39:18 +01:00
2021-02-24 17:14:11 +01:00
playwright-tests-core:
image: mcr.microsoft.com/playwright:focal
variables:
HDL_TEST_SET: core
before_script:
- apt-get update && apt-get install -y bash && apt-get clean
- pip install nose
script:
- ./devscripts/run_tests.sh
2021-01-18 22:39:18 +01:00
2021-02-24 17:14:11 +01:00
playwright-tests-download:
image: mcr.microsoft.com/playwright:focal
variables:
HDL_TEST_SET: download
HDL_TEST_PLAYWRIGHT_DOWNLOAD: 1
allow_failure: true
before_script:
- apt-get update && apt-get install -y bash && apt-get clean
- pip install nose
script:
- ./devscripts/run_tests.sh