mirror of
https://github.com/ovh/the-bastion.git
synced 2024-12-27 01:56:24 +08:00
chore: ghactions: change order of tests.yml
This commit is contained in:
parent
beec8afdc6
commit
140da2f178
1 changed files with 11 additions and 11 deletions
22
.github/workflows/tests.yml
vendored
22
.github/workflows/tests.yml
vendored
|
@ -5,6 +5,17 @@ on:
|
|||
types: [labeled, synchronize]
|
||||
|
||||
jobs:
|
||||
tests_short:
|
||||
name: Short (Debian 10 only)
|
||||
runs-on: ubuntu-latest
|
||||
if: contains(github.event.pull_request.labels.*.name, 'tests:short')
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: run tests inside a debian10 docker
|
||||
run: tests/functional/docker/docker_build_and_run_tests.sh debian10
|
||||
env:
|
||||
DOCKER_TTY: false
|
||||
|
||||
tests_full:
|
||||
name: Full
|
||||
strategy:
|
||||
|
@ -18,14 +29,3 @@ jobs:
|
|||
run: tests/functional/docker/docker_build_and_run_tests.sh ${{ matrix.platform }}
|
||||
env:
|
||||
DOCKER_TTY: false
|
||||
|
||||
tests_short:
|
||||
name: Full on Debian 10
|
||||
runs-on: ubuntu-latest
|
||||
if: contains(github.event.pull_request.labels.*.name, 'tests:short')
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: run tests inside a debian10 docker
|
||||
run: tests/functional/docker/docker_build_and_run_tests.sh debian10
|
||||
env:
|
||||
DOCKER_TTY: false
|
||||
|
|
Loading…
Reference in a new issue