mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-09-13 09:16:14 -07:00
dbc5e7d07c
A driver program is introduced to coordinate test running on Windows, similarly to what "make test" does on Linux and macOS.
36 lines
627 B
YAML
36 lines
627 B
YAML
test-win-64:
|
|
stage: test
|
|
rules:
|
|
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
|
interruptible: true
|
|
needs:
|
|
- job: build-crosstest
|
|
tags:
|
|
- win10-21h2
|
|
script:
|
|
- ./artifacts/driver.cross64.exe
|
|
variables:
|
|
TEST_ARCH: "64"
|
|
artifacts:
|
|
when: always
|
|
paths:
|
|
- artifacts
|
|
|
|
test-win-32:
|
|
stage: test
|
|
rules:
|
|
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
|
interruptible: true
|
|
needs:
|
|
- job: build-crosstest
|
|
tags:
|
|
- win10-21h2
|
|
script:
|
|
- ./artifacts/driver.cross64.exe
|
|
variables:
|
|
TEST_ARCH: "32"
|
|
artifacts:
|
|
when: always
|
|
paths:
|
|
- artifacts
|