Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 32 additions & 31 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Testrun test suite
permissions: {}

on:
pull_request:
Expand All @@ -25,37 +26,37 @@ jobs:
shell: bash {0}
run: testing/baseline/test_baseline

testrun_tests:
permissions: {}
name: Tests
runs-on: ubuntu-20.04
needs: testrun_baseline
timeout-minutes: 45
steps:
- name: Checkout source
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Install dependencies
shell: bash {0}
run: cmd/prepare
- name: Package Testrun
shell: bash {0}
run: cmd/package
- name: Install Testrun
shell: bash {0}
run: sudo dpkg -i testrun*.deb
- name: Run tests
shell: bash {0}
run: testing/tests/test_tests
- name: Archive runtime results
if: ${{ always() }}
run: sudo tar --exclude-vcs -czf runtime.tgz /usr/local/testrun/runtime/
- name: Upload runtime results
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
if: ${{ always() }}
with:
if-no-files-found: error
name: runtime_tests_${{ github.run_id }}
path: runtime.tgz
# testrun_tests:
# permissions: {}
# name: Tests
# runs-on: ubuntu-20.04
# needs: testrun_baseline
# timeout-minutes: 45
# steps:
# - name: Checkout source
# uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
# - name: Install dependencies
# shell: bash {0}
# run: cmd/prepare
# - name: Package Testrun
# shell: bash {0}
# run: cmd/package
# - name: Install Testrun
# shell: bash {0}
# run: sudo dpkg -i testrun*.deb
# - name: Run tests
# shell: bash {0}
# run: testing/tests/test_tests
# - name: Archive runtime results
# if: ${{ always() }}
# run: sudo tar --exclude-vcs -czf runtime.tgz /usr/local/testrun/runtime/
# - name: Upload runtime results
# uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
# if: ${{ always() }}
# with:
# if-no-files-found: error
# name: runtime_tests_${{ github.run_id }}
# path: runtime.tgz

testrun_api:
permissions: {}
Expand Down