Merge pull request #9033 from romayalon/romy-ci-warp-action #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Warp Tests | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
warp-tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 90 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout noobaa-core | |
uses: actions/checkout@v4 | |
with: | |
repository: 'noobaa/noobaa-core' | |
path: 'noobaa-core' | |
- name: Create Warp logs directory | |
run: | | |
set -x | |
cd ./noobaa-core | |
mkdir -p logs/warp-test-logs | |
chmod 777 logs/warp-test-logs | |
- name: Run Warp tests | |
run: | | |
set -x | |
cd ./noobaa-core | |
make test-warp | |