Skip to content

Commit

Permalink
Add workflow to trigger uploader faster
Browse files Browse the repository at this point in the history
  • Loading branch information
oxve committed Jul 17, 2023
1 parent 6d01dc8 commit 5bed1ec
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: testing

on:
pull_request:
types: [opened, reopened, synchronize, labeled]
branches:
- main
- feature/*
push:
branches:
- main
- feature/*
workflow_dispatch:
inputs:
nightly:
description: 'Nightly workflow.'
required: true
type: boolean
default: false

jobs:
linux-x64:
runs-on: ubuntu-latest
steps:
- name: Archive unit test report
uses: actions/upload-artifact@v3
# TODO: Should only run for unit-tests
if: always()
with:
name: unit-test-results
path: unit-test-results/
2 changes: 2 additions & 0 deletions .github/workflows/unit_test_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
workflow_run:
workflows:
- linux
# TODO: Temporary testing
- testing
# TODO: Download xml files from GCS
# - android
# - raspi
Expand Down

0 comments on commit 5bed1ec

Please sign in to comment.