Changeset 44211db4 in trunk


Ignore:
Timestamp:
2021-09-20T11:18:22Z (4 years ago)
Author:
fenn-cs <fenn25.fn@…>
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.
Message:

Merge branch 'master' of github.com:tahoe-lafs/tahoe-lafs into 3788.refactor-src.test.mutable

Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified .circleci/config.yml

    rcd7e218 r44211db4  
    272272          path: "/tmp/project/_trial_temp/test.log"
    273273
     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
    274279      - store_artifacts: &STORE_OTHER_ARTIFACTS
    275280          # Store any other artifacts, too.  This is handy to allow other jobs
     
    414419      - store_test_results: *STORE_TEST_RESULTS
    415420      - store_artifacts: *STORE_TEST_LOG
     421      - store_artifacts: *STORE_ELIOT_LOG
    416422      - store_artifacts: *STORE_OTHER_ARTIFACTS
    417423      - run: *SUBMIT_COVERAGE
  • TabularUnified .github/workflows/ci.yml

    rcd7e218 r44211db4  
    7777        run: python -m tox
    7878
    79       - name: Upload eliot.log in case of failure
     79      - name: Upload eliot.log
    8080        uses: actions/upload-artifact@v1
    81         if: failure()
    8281        with:
    8382          name: eliot.log
    8483          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
    8590
    8691      # Upload this job's coverage data to Coveralls.  While there is a GitHub
     
    137142  # https://coveralls-python.readthedocs.io/en/latest/usage/configuration.html
    138143  finish-coverage-report:
    139     needs: 
     144    needs:
    140145      - "coverage"
    141146    runs-on: "ubuntu-latest"
     
    174179        if: matrix.os == 'ubuntu-latest'
    175180        run: sudo apt install tor
    176        
     181
    177182      # TODO: See https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3744.
    178183      # We have to use an older version of Tor for running integration
Note: See TracChangeset for help on using the changeset viewer.