Skip to content

Commit

Permalink
ci : schedule slow server tests only on Release or on demand (ggergan…
Browse files Browse the repository at this point in the history
  • Loading branch information
phymbert authored and NeoZhangJianyu committed Mar 5, 2024
1 parent f72df31 commit 23a6275
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ name: Server

on:
workflow_dispatch: # allows manual triggering
inputs:
slow_tests:
description: 'Run slow tests'
required: true
type: boolean
push:
branches:
- master
Expand All @@ -11,7 +16,7 @@ on:
types: [opened, synchronize, reopened]
paths: ['.github/workflows/server.yml', '**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.swift', '**/*.m', 'examples/server/tests/**.*']
schedule:
- cron: '00 0 * * *'
- cron: '0 0 * * *'

jobs:
server:
Expand Down Expand Up @@ -80,7 +85,7 @@ jobs:
- name: Slow tests
id: server_integration_tests_slow
if: github.event.schedule != ''
if: ${{ github.event.schedule != '' && matrix.build_type == 'Release' || github.event.inputs.slow_tests == 'true' }}
run: |
cd examples/server/tests
PORT=8888 ./tests.sh --stop --no-skipped --no-capture --tags slow

0 comments on commit 23a6275

Please sign in to comment.