aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDerek Mauro <dmauro@google.com>2024-04-03 07:05:10 -0700
committerCopybara-Service <copybara-worker@google.com>2024-04-03 07:06:06 -0700
commitec7b38672c04c8af3cfb078214edf6751b841014 (patch)
tree89b50d25cf21289dac5a7cf5ad58249ca850e49e /.github
parenta2f106c7e262be997b147b09d32e254eb336f071 (diff)
downloadgoogletest-ec7b38672c04c8af3cfb078214edf6751b841014.zip
googletest-ec7b38672c04c8af3cfb078214edf6751b841014.tar.gz
googletest-ec7b38672c04c8af3cfb078214edf6751b841014.tar.bz2
Delete the unofficial GitHub actions tests.
We do not look at these. Close #4509 PiperOrigin-RevId: 621511191 Change-Id: Icbd3fe0a18444e0888bbec61345c6a957d8899d6
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/gtest-ci.yml43
1 files changed, 0 insertions, 43 deletions
diff --git a/.github/workflows/gtest-ci.yml b/.github/workflows/gtest-ci.yml
deleted file mode 100644
index 03a8cc5..0000000
--- a/.github/workflows/gtest-ci.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-name: ci
-
-on:
- push:
- pull_request:
-
-env:
- BAZEL_CXXOPTS: -std=c++14
-
-jobs:
- Linux:
- runs-on: ubuntu-latest
- steps:
-
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
-
- - name: Tests
- run: bazel test --cxxopt=-std=c++14 --features=external_include_paths --test_output=errors ...
-
- macOS:
- runs-on: macos-latest
- steps:
-
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
-
- - name: Tests
- run: bazel test --cxxopt=-std=c++14 --features=external_include_paths --test_output=errors ...
-
-
- Windows:
- runs-on: windows-latest
- steps:
-
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
-
- - name: Tests
- run: bazel test --cxxopt=/std:c++14 --features=external_include_paths --test_output=errors ...