diff options
author | fanquake <fanquake@gmail.com> | 2019-12-12 06:57:44 -0500 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2019-12-12 07:01:51 -0500 |
commit | 75a2a4f3574436bb174d6f9a7f9a0d0e8a601cac (patch) | |
tree | 1424360c39e0d3bb6c017527efd24fb2cdcd4d7d | |
parent | 0192bd06523039214e85953b44455d5f017e6c9d (diff) | |
parent | fabd5b444ef83b5cd0d63b33bbf6ea4e7557d0eb (diff) |
Merge #17726: ci: Use python 3.7 on Windows Github Actions
fabd5b444ef83b5cd0d63b33bbf6ea4e7557d0eb ci: Use python 3.7 on Windows Github Actions (MarcoFalke)
Pull request description:
This mirrors the appveyor config https://github.com/bitcoin/bitcoin/blob/7da9e3a8171f976a9e01ee55ab9fe79bd1f033d1/.appveyor.yml#L10 and is needed for PEP 540
ACKs for top commit:
sipsorcery:
tACK fabd5b444ef83b5cd0d63b33bbf6ea4e7557d0eb.
laanwj:
ACK fabd5b444ef83b5cd0d63b33bbf6ea4e7557d0eb
Tree-SHA512: 2d0118bf4eb5ec510d1ad6e287d35bf28cc800101fa18704c119c7bc84f545aaa236ffe45dc425559e6bd896610302a133b2c50ccdcd3ced6e4d6f8302de7cdb
-rw-r--r-- | .github/workflows/ci.yml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1d5efaa8d..9756ebba1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,10 @@ jobs: steps: - uses: actions/checkout@v1 + - uses: actions/setup-python@v1 + with: + python-version: '3.7' # Needed for PEP 540 + - uses: actions/cache@v1 id: vcpkgcache with: @@ -67,10 +71,7 @@ jobs: - name: rpcauth-test shell: cmd run: python test\util\rpcauth-test.py -# This step fails due to character UTF encoding error. If anyone knows how Python deals with Unicode they might be -# able to decipher the error message. -# - name: test_runner -# shell: cmd -# run: | -# python test\functional\test_runner.py --ansi --ci --quiet --combinedlogslen=4000 --failfast --exclude feature_fee_estimation - + - name: test_runner + shell: cmd + run: | + python test\functional\test_runner.py --ansi --ci --quiet --combinedlogslen=4000 --failfast --exclude feature_fee_estimation |