Changeset 44211db4 in trunk
- Timestamp:
- 2021-09-20T11:18:22Z (4 years ago)
- Branches:
- master
- Children:
- 14076e5
- Parents:
- cd7e218 (diff), 2f742d8 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified .circleci/config.yml ¶
rcd7e218 r44211db4 272 272 path: "/tmp/project/_trial_temp/test.log" 273 273 274 - store_artifacts: &STORE_ELIOT_LOG 275 # Despite passing --workdir /tmp to tox above, it still runs trial 276 # in the project source checkout. 277 path: "/tmp/project/eliot.log" 278 274 279 - store_artifacts: &STORE_OTHER_ARTIFACTS 275 280 # Store any other artifacts, too. This is handy to allow other jobs … … 414 419 - store_test_results: *STORE_TEST_RESULTS 415 420 - store_artifacts: *STORE_TEST_LOG 421 - store_artifacts: *STORE_ELIOT_LOG 416 422 - store_artifacts: *STORE_OTHER_ARTIFACTS 417 423 - run: *SUBMIT_COVERAGE -
TabularUnified .github/workflows/ci.yml ¶
rcd7e218 r44211db4 77 77 run: python -m tox 78 78 79 - name: Upload eliot.log in case of failure79 - name: Upload eliot.log 80 80 uses: actions/upload-artifact@v1 81 if: failure()82 81 with: 83 82 name: eliot.log 84 83 path: eliot.log 84 85 - name: Upload trial log 86 uses: actions/upload-artifact@v1 87 with: 88 name: test.log 89 path: _trial_temp/test.log 85 90 86 91 # Upload this job's coverage data to Coveralls. While there is a GitHub … … 137 142 # https://coveralls-python.readthedocs.io/en/latest/usage/configuration.html 138 143 finish-coverage-report: 139 needs: 144 needs: 140 145 - "coverage" 141 146 runs-on: "ubuntu-latest" … … 174 179 if: matrix.os == 'ubuntu-latest' 175 180 run: sudo apt install tor 176 181 177 182 # TODO: See https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3744. 178 183 # We have to use an older version of Tor for running integration
Note: See TracChangeset
for help on using the changeset viewer.