Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
ColossalAI
Commits
6718a2f2
Commit
6718a2f2
authored
Jun 12, 2023
by
Frank Lee
Committed by
ver217
Jun 12, 2023
Browse files
[workflow] cancel duplicated workflow jobs (#3960)
parent
71fe5276
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
33 additions
and
0 deletions
+33
-0
.github/workflows/build_on_pr.yml
.github/workflows/build_on_pr.yml
+9
-0
.github/workflows/compatiblity_test_on_pr.yml
.github/workflows/compatiblity_test_on_pr.yml
+6
-0
.github/workflows/doc_check_on_pr.yml
.github/workflows/doc_check_on_pr.yml
+6
-0
.github/workflows/doc_test_on_pr.yml
.github/workflows/doc_test_on_pr.yml
+6
-0
.github/workflows/example_check_on_pr.yml
.github/workflows/example_check_on_pr.yml
+6
-0
No files found.
.github/workflows/build_on_pr.yml
View file @
6718a2f2
...
...
@@ -60,6 +60,9 @@ jobs:
defaults
:
run
:
shell
:
bash
concurrency
:
group
:
${{ github.head_ref }}
cancel-in-progress
:
false
steps
:
-
name
:
Copy testmon cache
run
:
|
# branch name may contain slash, we need to replace it with space
...
...
@@ -83,6 +86,9 @@ jobs:
changedLibraryFiles
:
${{ steps.find-lib-change.outputs.all_changed_files }}
anyLibraryFileChanged
:
${{ steps.find-lib-change.outputs.any_changed }}
runs-on
:
ubuntu-latest
concurrency
:
group
:
${{ github.head_ref }}
cancel-in-progress
:
false
steps
:
-
uses
:
actions/checkout@v2
with
:
...
...
@@ -140,6 +146,9 @@ jobs:
defaults
:
run
:
shell
:
bash
concurrency
:
group
:
${{ github.head_ref }}
cancel-in-progress
:
false
steps
:
-
name
:
Checkout TensorNVMe
uses
:
actions/checkout@v2
...
...
.github/workflows/compatiblity_test_on_pr.yml
View file @
6718a2f2
...
...
@@ -12,6 +12,9 @@ jobs:
runs-on
:
ubuntu-latest
outputs
:
matrix
:
${{ steps.set-matrix.outputs.matrix }}
concurrency
:
group
:
${{ github.head_ref }}
cancel-in-progress
:
false
steps
:
-
uses
:
actions/checkout@v3
-
id
:
set-matrix
...
...
@@ -40,6 +43,9 @@ jobs:
image
:
${{ matrix.container }}
options
:
--gpus all --rm -v /data/scratch/cifar-10:/data/scratch/cifar-10
timeout-minutes
:
120
concurrency
:
group
:
${{ github.head_ref }}
cancel-in-progress
:
false
steps
:
-
name
:
Install dependencies
run
:
|
...
...
.github/workflows/doc_check_on_pr.yml
View file @
6718a2f2
...
...
@@ -16,6 +16,9 @@ jobs:
github.event.pull_request.draft == false &&
github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI'
runs-on
:
ubuntu-latest
concurrency
:
group
:
${{ github.head_ref }}
cancel-in-progress
:
false
steps
:
-
uses
:
actions/checkout@v2
...
...
@@ -31,6 +34,9 @@ jobs:
github.event.pull_request.draft == false &&
github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI'
runs-on
:
ubuntu-latest
concurrency
:
group
:
${{ github.head_ref }}
cancel-in-progress
:
false
steps
:
-
uses
:
actions/checkout@v2
with
:
...
...
.github/workflows/doc_test_on_pr.yml
View file @
6718a2f2
...
...
@@ -19,6 +19,9 @@ jobs:
outputs
:
any_changed
:
${{ steps.changed-files.outputs.any_changed }}
changed_files
:
${{ steps.changed-files.outputs.all_changed_files }}
concurrency
:
group
:
${{ github.head_ref }}
cancel-in-progress
:
false
name
:
Detect changed example files
steps
:
-
uses
:
actions/checkout@v3
...
...
@@ -59,6 +62,9 @@ jobs:
defaults
:
run
:
shell
:
bash
concurrency
:
group
:
${{ github.head_ref }}
cancel-in-progress
:
false
steps
:
-
name
:
Checkout ColossalAI-Documentation
uses
:
actions/checkout@v2
...
...
.github/workflows/example_check_on_pr.yml
View file @
6718a2f2
...
...
@@ -20,6 +20,9 @@ jobs:
matrix
:
${{ steps.setup-matrix.outputs.matrix }}
anyChanged
:
${{ steps.setup-matrix.outputs.anyChanged }}
name
:
Detect changed example files
concurrency
:
group
:
${{ github.head_ref }}
cancel-in-progress
:
false
steps
:
-
uses
:
actions/checkout@v3
with
:
...
...
@@ -77,6 +80,9 @@ jobs:
image
:
hpcaitech/pytorch-cuda:1.12.0-11.3.0
options
:
--gpus all --rm -v /data/scratch/examples-data:/data/
timeout-minutes
:
10
concurrency
:
group
:
${{ github.head_ref }}
cancel-in-progress
:
false
steps
:
-
uses
:
actions/checkout@v3
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment