Merge branch 'master' of github.com:tahoe-lafs/tahoe-lafs into 3758.refactor.web-tests-grid-logs-root
This commit is contained in:
commit
e54dee8b4e
@ -271,6 +271,11 @@ jobs:
|
|||||||
# in the project source checkout.
|
# in the project source checkout.
|
||||||
path: "/tmp/project/_trial_temp/test.log"
|
path: "/tmp/project/_trial_temp/test.log"
|
||||||
|
|
||||||
|
- store_artifacts: &STORE_ELIOT_LOG
|
||||||
|
# Despite passing --workdir /tmp to tox above, it still runs trial
|
||||||
|
# in the project source checkout.
|
||||||
|
path: "/tmp/project/eliot.log"
|
||||||
|
|
||||||
- store_artifacts: &STORE_OTHER_ARTIFACTS
|
- store_artifacts: &STORE_OTHER_ARTIFACTS
|
||||||
# Store any other artifacts, too. This is handy to allow other jobs
|
# Store any other artifacts, too. This is handy to allow other jobs
|
||||||
# sharing most of the definition of this one to be able to
|
# sharing most of the definition of this one to be able to
|
||||||
@ -413,6 +418,7 @@ jobs:
|
|||||||
- run: *RUN_TESTS
|
- run: *RUN_TESTS
|
||||||
- store_test_results: *STORE_TEST_RESULTS
|
- store_test_results: *STORE_TEST_RESULTS
|
||||||
- store_artifacts: *STORE_TEST_LOG
|
- store_artifacts: *STORE_TEST_LOG
|
||||||
|
- store_artifacts: *STORE_ELIOT_LOG
|
||||||
- store_artifacts: *STORE_OTHER_ARTIFACTS
|
- store_artifacts: *STORE_OTHER_ARTIFACTS
|
||||||
- run: *SUBMIT_COVERAGE
|
- run: *SUBMIT_COVERAGE
|
||||||
|
|
||||||
|
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
@ -76,13 +76,18 @@ jobs:
|
|||||||
- name: Run tox for corresponding Python version
|
- name: Run tox for corresponding Python version
|
||||||
run: python -m tox
|
run: python -m tox
|
||||||
|
|
||||||
- name: Upload eliot.log in case of failure
|
- name: Upload eliot.log
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v1
|
||||||
if: failure()
|
|
||||||
with:
|
with:
|
||||||
name: eliot.log
|
name: eliot.log
|
||||||
path: eliot.log
|
path: eliot.log
|
||||||
|
|
||||||
|
- name: Upload trial log
|
||||||
|
uses: actions/upload-artifact@v1
|
||||||
|
with:
|
||||||
|
name: test.log
|
||||||
|
path: _trial_temp/test.log
|
||||||
|
|
||||||
# Upload this job's coverage data to Coveralls. While there is a GitHub
|
# Upload this job's coverage data to Coveralls. While there is a GitHub
|
||||||
# Action for this, as of Jan 2021 it does not support Python coverage
|
# Action for this, as of Jan 2021 it does not support Python coverage
|
||||||
# files - only lcov files. Therefore, we use coveralls-python, the
|
# files - only lcov files. Therefore, we use coveralls-python, the
|
||||||
|
0
newsfragments/3792.minor
Normal file
0
newsfragments/3792.minor
Normal file
Loading…
Reference in New Issue
Block a user