Skip to content

Commit

Permalink
Add option to specify which contiainer linux tests run in
Browse files Browse the repository at this point in the history
  • Loading branch information
melund committed Sep 29, 2021
1 parent 7ac2835 commit aad6932
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/nighly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ on:
schedule:
- cron: 0 3 * * *
workflow_dispatch:
inputs:
linux_container:
description: 'Which container to run AnyBody on Linux.'
default: ghcr.io/anybody/anybodycon-linux:latest
required: true


concurrency:
group: ci-${{ github.ref }}
Expand Down Expand Up @@ -46,7 +52,7 @@ jobs:
test-linux:
runs-on: [self-hosted, linux]
container: ghcr.io/anybody/anybodycon-linux:latest
container: ${{ github.event.inputs.linux_container || 'ghcr.io/anybody/anybodycon-linux:latest' }}

env:
# Triggers a warning at 20 deg muscles angles
Expand All @@ -60,4 +66,3 @@ jobs:
RLM_LICENSE_PASSWORD: ${{ secrets.LICENSE_PASSWORD }}
run: pytest --runslow -n 4 Tests


0 comments on commit aad6932

Please sign in to comment.