aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build_test.yml
diff options
context:
space:
mode:
authorEvgenii Kliuchnikov <eustas@google.com>2023-09-13 05:13:11 -0700
committerCopybara-Service <copybara-worker@google.com>2023-09-13 05:13:57 -0700
commitce9c16e88296385071d975665acb3c3eaa96f26a (patch)
tree86ae55792adce39a89669331be234183b69658e8 /.github/workflows/build_test.yml
parent63402aa8afb25d03fd710402bdeb84a8ae2208fc (diff)
downloadbrotli-ce9c16e88296385071d975665acb3c3eaa96f26a.zip
brotli-ce9c16e88296385071d975665acb3c3eaa96f26a.tar.gz
brotli-ce9c16e88296385071d975665acb3c3eaa96f26a.tar.bz2
upload full testdata archive
PiperOrigin-RevId: 565017690
Diffstat (limited to '.github/workflows/build_test.yml')
-rw-r--r--.github/workflows/build_test.yml36
1 files changed, 0 insertions, 36 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml
index 91668d3..c21a144 100644
--- a/.github/workflows/build_test.yml
+++ b/.github/workflows/build_test.yml
@@ -357,39 +357,3 @@ jobs:
python -VV
python -c "import sys; sys.exit('Invalid python version') if '.'.join(map(str,sys.version_info[0:2])) != '${{ matrix.python_version }}' else True"
python setup.py ${{ matrix.py_setuptools_cmd || 'test'}}
-
- archive_build:
- name: Build and test from archive
- runs-on: 'ubuntu-latest'
- defaults:
- run:
- shell: bash
- steps:
-
- - name: Checkout the source
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- with:
- submodules: false
- fetch-depth: 1
-
- - name: Archive
- run: |
- git archive HEAD -o archive.tgz
-
- - name: Extract
- run: |
- mkdir archive
- cd archive
- tar xvzf ../archive.tgz
-
- - name: Configure and Build
- run: |
- cd archive
- cmake -B out .
- cmake --build out
-
- - name: Test
- run: |
- cd archive
- cd out
- ctest