Skip to content

Commit

Permalink
ci: Update GTest to master (CLIUtils#470)
Browse files Browse the repository at this point in the history
* ci: Update googletest to fix windows error

* chore: Minor updates to CI versions
  • Loading branch information
henryiii authored Jun 1, 2020
1 parent 41a9c29 commit 50bfb5a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: set PY
run: echo "::set-env name=PY::$(python --version --version | sha256sum | cut -d' ' -f1)"
run: echo "::set-env name=PY::$(python -c 'import hashlib, sys;print(hashlib.sha256(sys.version.encode()+sys.executable.encode()).hexdigest())')"
- uses: actions/cache@v1
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
- uses: pre-commit/action@v1.0.0
- uses: pre-commit/action@v1.1.0

cuda-build:
name: CUDA build only
Expand Down Expand Up @@ -107,9 +107,14 @@ jobs:
with:
version: 3.15.6
if: success() || failure()
- name: CMake 3.16
uses: ./.github/actions/cmake_config
with:
version: 3.16.8
if: success() || failure()
- name: CMake 3.16 (full)
uses: ./.github/actions/cmake_config
with:
version: 3.16.2
version: 3.17.3
options: -DCLI11_SANITIZERS=ON -DCLI11_BUILD_EXAMPLES_JSON=ON
if: success() || failure()
2 changes: 1 addition & 1 deletion extern/googletest
Submodule googletest updated 128 files

0 comments on commit 50bfb5a

Please sign in to comment.