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
fengzch-das
nunchaku
Commits
0f6c974a
Commit
0f6c974a
authored
Apr 18, 2025
by
muyangli
Browse files
rename the workflows
parent
57332240
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
17 deletions
+17
-17
.github/workflows/pr_test_ampere.yaml
.github/workflows/pr_test_ampere.yaml
+8
-8
.github/workflows/pr_test_blackwell.yaml
.github/workflows/pr_test_blackwell.yaml
+9
-9
No files found.
.github/workflows/pr_test_
5090
.yaml
→
.github/workflows/pr_test_
ampere
.yaml
View file @
0f6c974a
name
:
pr_test_
5090
name
:
pr_test_
ampere
on
:
workflow_dispatch
:
...
...
@@ -44,7 +44,7 @@ concurrency:
jobs
:
check-comment
:
if
:
${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'issue_comment' && github.event.issue.pull_request && !github.event.pull_request.draft) }}
runs-on
:
self-hosted
runs-on
:
[
self-hosted
,
ampere
]
outputs
:
should_run
:
${{ steps.check.outputs.should_run }}
steps
:
...
...
@@ -59,7 +59,7 @@ jobs:
fi
set-up-build-env
:
runs-on
:
self-hosted
runs-on
:
[
self-hosted
,
ampere
]
needs
:
[
check-comment
]
if
:
${{ github.event_name != 'issue_comment' || needs.check-comment.outputs.should_run == 'true' }}
...
...
@@ -101,7 +101,7 @@ jobs:
build
:
needs
:
set-up-build-env
runs-on
:
self-hosted
runs-on
:
[
self-hosted
,
ampere
]
timeout-minutes
:
30
if
:
${{ github.event_name != 'issue_comment' || needs.check-comment.outputs.should_run == 'true' }}
...
...
@@ -117,7 +117,7 @@ jobs:
test-flux-memory
:
needs
:
build
runs-on
:
self-hosted
runs-on
:
[
self-hosted
,
ampere
]
timeout-minutes
:
30
if
:
${{ github.event_name != 'issue_comment' || needs.check-comment.outputs.should_run == 'true' }}
...
...
@@ -132,7 +132,7 @@ jobs:
test-flux-other
:
needs
:
build
runs-on
:
self-hosted
runs-on
:
[
self-hosted
,
ampere
]
timeout-minutes
:
150
if
:
${{ github.event_name != 'issue_comment' || needs.check-comment.outputs.should_run == 'true' }}
...
...
@@ -147,7 +147,7 @@ jobs:
test-sana
:
needs
:
build
runs-on
:
self-hosted
runs-on
:
[
self-hosted
,
ampere
]
timeout-minutes
:
60
if
:
${{ github.event_name != 'issue_comment' || needs.check-comment.outputs.should_run == 'true' }}
...
...
@@ -163,7 +163,7 @@ jobs:
clean-up
:
if
:
always() && (github.event_name != 'issue_comment' || needs.check-comment.outputs.should_run == 'true')
needs
:
[
set-up-build-env
,
test-flux-memory
,
test-flux-other
,
test-sana
]
runs-on
:
self-hosted
runs-on
:
[
self-hosted
,
ampere
]
steps
:
-
name
:
Clean up
...
...
.github/workflows/pr_test_
linux
.yaml
→
.github/workflows/pr_test_
blackwell
.yaml
View file @
0f6c974a
name
:
pr_test_
linux
name
:
pr_test_
blackwell
on
:
workflow_dispatch
:
...
...
@@ -44,7 +44,7 @@ concurrency:
jobs
:
check-comment
:
if
:
${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'issue_comment' && github.event.issue.pull_request && !github.event.pull_request.draft) }}
runs-on
:
self-hosted
runs-on
:
[
self-hosted
,
blackwell
]
outputs
:
should_run
:
${{ steps.check.outputs.should_run }}
steps
:
...
...
@@ -59,7 +59,7 @@ jobs:
fi
set-up-build-env
:
runs-on
:
self-hosted
runs-on
:
[
self-hosted
,
blackwell
]
needs
:
[
check-comment
]
if
:
${{ github.event_name != 'issue_comment' || needs.check-comment.outputs.should_run == 'true' }}
...
...
@@ -95,13 +95,13 @@ jobs:
which python
conda install -c conda-forge gxx=11 gcc=11
echo "Installing dependencies"
pip install torch torchvision torchaudio
pip install
--pre
torch torchvision torchaudio
--index-url https://download.pytorch.org/whl/nightly/cu128
pip install ninja wheel diffusers transformers accelerate sentencepiece protobuf huggingface_hub
build
:
needs
:
set-up-build-env
runs-on
:
self-hosted
runs-on
:
[
self-hosted
,
blackwell
]
timeout-minutes
:
30
if
:
${{ github.event_name != 'issue_comment' || needs.check-comment.outputs.should_run == 'true' }}
...
...
@@ -117,7 +117,7 @@ jobs:
test-flux-memory
:
needs
:
build
runs-on
:
self-hosted
runs-on
:
[
self-hosted
,
blackwell
]
timeout-minutes
:
30
if
:
${{ github.event_name != 'issue_comment' || needs.check-comment.outputs.should_run == 'true' }}
...
...
@@ -132,7 +132,7 @@ jobs:
test-flux-other
:
needs
:
build
runs-on
:
self-hosted
runs-on
:
[
self-hosted
,
blackwell
]
timeout-minutes
:
150
if
:
${{ github.event_name != 'issue_comment' || needs.check-comment.outputs.should_run == 'true' }}
...
...
@@ -147,7 +147,7 @@ jobs:
test-sana
:
needs
:
build
runs-on
:
self-hosted
runs-on
:
[
self-hosted
,
blackwell
]
timeout-minutes
:
60
if
:
${{ github.event_name != 'issue_comment' || needs.check-comment.outputs.should_run == 'true' }}
...
...
@@ -163,7 +163,7 @@ jobs:
clean-up
:
if
:
always() && (github.event_name != 'issue_comment' || needs.check-comment.outputs.should_run == 'true')
needs
:
[
set-up-build-env
,
test-flux-memory
,
test-flux-other
,
test-sana
]
runs-on
:
self-hosted
runs-on
:
[
self-hosted
,
blackwell
]
steps
:
-
name
:
Clean up
...
...
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