Skip to content

Commit

Permalink
Adjust timeout in the github action
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelroquetto committed Dec 14, 2024
1 parent 1b5b802 commit f64463a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ jobs:
with:
arch: x86_64
kernel-version: 5.15.152
timeout-minutes: 90
7 changes: 6 additions & 1 deletion .github/workflows/workflow_integration_tests_vm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ on:
description: 'Kernel version to use when running the tests'
required: true
type: string
timeout-minutes:
description: 'Timeout in minutes before the test is terminated'
required: false
type: number
default: 60
jobs:
test:
name: test
Expand All @@ -33,7 +38,7 @@ jobs:
- name: Run VM integration tests
run: |
sudo make -C test/vm KERNEL_VER=${{ inputs.kernel-version }} ARCH=${{ inputs.arch }} && [ -f testoutput/success ]
timeout-minutes: 60
timeout-minutes: ${{ inputs.timeout-minutes }}
- name: Upload integration test logs
uses: actions/upload-artifact@v4
if: always()
Expand Down

0 comments on commit f64463a

Please sign in to comment.