summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2020-02-19 22:36:26 -0500
committerDavid Pursehouse <dpursehouse@collab.net>2020-02-21 05:17:05 +0000
commitd9254599f9bb47632313ecb90c5f281ceca5da3a (patch)
tree5c1bdb0815f5a027f0de194b488ba254719c7c11 /.github
parent746e7f664e306e823a40cd95a127516aa522ed8f (diff)
downloadgit-repo-d9254599f9bb47632313ecb90c5f281ceca5da3a.tar.gz
manifest/tests: get them passing under Windows
We also need to check more things in the manifest/project handlers, and use platform_utils in a few places to address Windows behavior. Drop Python 2.7 from Windows testing as it definitely doesn't work and we won't be fixing it. Change-Id: I83d00ee9f1612312bb3f7147cb9535fc61268245 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/256113 Tested-by: Mike Frysinger <vapier@google.com> Reviewed-by: Jonathan Nieder <jrn@google.com> Reviewed-by: David Pursehouse <dpursehouse@collab.net>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test-ci.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/test-ci.yml b/.github/workflows/test-ci.yml
index 93061814..c33002dc 100644
--- a/.github/workflows/test-ci.yml
+++ b/.github/workflows/test-ci.yml
@@ -15,6 +15,9 @@ jobs:
15 matrix: 15 matrix:
16 os: [ubuntu-latest, macos-latest, windows-latest] 16 os: [ubuntu-latest, macos-latest, windows-latest]
17 python-version: [2.7, 3.6, 3.7, 3.8] 17 python-version: [2.7, 3.6, 3.7, 3.8]
18 exclude:
19 - os: windows-latest
20 python-version: 2.7
18 runs-on: ${{ matrix.os }} 21 runs-on: ${{ matrix.os }}
19 22
20 steps: 23 steps: