6b51dbccf8
* Split workflows + docker usage
* Fix omnitrace-ci-ubuntu-focal-external
* fix env
* Update path to action
* fix entrypoint
* Updated cancelling, disabled formatting
* fix entrypoint
* rework
* try using container
* relocate container
* fix image name
* shell expand
* external and external-rocm
* install libopenmpi-dev
* remove github.workspace
* github.workspace for rocm
* Update bionic, etc. + docker CI
* Remove self-hosted + bionic fix
* GIT_DISCOVERY_ACROSS_FILESYSTEM for bionic
* TIMEMORY_INSTALL_LIBRARIES + exe RPATH updates
- fix RPATH for omnitrace, omnitrace-avail, and omnitrace-critical-trace
* ubuntu bionic update
* bionic and focal-dyninst-package updates
* Disable lulesh MPI by default + timeouts
- increase openmp CG timeout
- decrease openmp CG runtime
[ROCm/rocprofiler-systems commit: 138d16d16a]
22 wiersze
792 B
YAML
22 wiersze
792 B
YAML
name: cancel-builds-on-update
|
|
on:
|
|
workflow_run:
|
|
# workflows: ['formatting', 'ubuntu-bionic', 'ubuntu-focal-dyninst-package', 'ubuntu-focal-external-rocm', 'ubuntu-focal-external', 'ubuntu-focal']
|
|
workflows: ['formatting', 'ubuntu-focal-external', 'ubuntu-focal-external-rocm']
|
|
types: ['requested']
|
|
|
|
jobs:
|
|
cancel-duplicate-workflow-runs:
|
|
name: "Cancel duplicate workflow runs"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: potiuk/cancel-workflow-runs@master
|
|
name: "Cancel duplicate workflow runs"
|
|
with:
|
|
cancelMode: duplicates
|
|
cancelFutureDuplicates: true
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
sourceRunId: ${{ github.event.workflow_run.id }}
|
|
notifyPRCancel: true
|
|
skipEventTypes: '["schedule"]'
|