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
chenpangpang
transformers
Commits
80aa4b8a
Unverified
Commit
80aa4b8a
authored
Jun 30, 2020
by
Sam Shleifer
Committed by
GitHub
Jun 30, 2020
Browse files
[CI] GH-runner stores artifacts like CircleCI (#5318)
parent
87716a6d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
.github/workflows/self-push.yml
.github/workflows/self-push.yml
+6
-1
.github/workflows/self-scheduled.yml
.github/workflows/self-scheduled.yml
+6
-2
No files found.
.github/workflows/self-push.yml
View file @
80aa4b8a
...
@@ -51,4 +51,9 @@ jobs:
...
@@ -51,4 +51,9 @@ jobs:
USE_CUDA
:
yes
USE_CUDA
:
yes
run
:
|
run
:
|
source .env/bin/activate
source .env/bin/activate
python -m pytest -n 2 --dist=loadfile -s -v ./tests/
python -m pytest -n 2 --dist=loadfile -s -v ./tests/ | tee output.txt
-
name
:
Upload output.txt
uses
:
actions/upload-artifact@v1
with
:
name
:
pytest_output
path
:
output.txt
.github/workflows/self-scheduled.yml
View file @
80aa4b8a
...
@@ -46,5 +46,9 @@ jobs:
...
@@ -46,5 +46,9 @@ jobs:
USE_CUDA
:
yes
USE_CUDA
:
yes
run
:
|
run
:
|
source .env/bin/activate
source .env/bin/activate
python -m pytest -n 1 --dist=loadfile -s -v ./tests/
python -m pytest -n 1 --dist=loadfile -s -v ./tests/ | tee output.txt
-
name
:
Upload output.txt
uses
:
actions/upload-artifact@v1
with
:
name
:
pytest_output
path
:
output.txt
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