OkHTTP3 - fix response charset and adding support for gzip compressio… #533
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: smoke-test | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**/README.md' | |
- 'smoke-tests/matrix' | |
pull_request: | |
jobs: | |
smoke-test: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
suite: [ "glassfish", "jetty", "liberty", "tomcat", "tomee", "wildfly", "other" ] | |
fail-fast: true | |
steps: | |
# Set fetch-depth: 0 to fetch commit history and tags for use in version calculation | |
- name: Check out code | |
uses: actions/[email protected] | |
with: | |
ref: ${{github.event.pull_request.head.ref}} | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
fetch-depth: 0 | |
submodules: true | |
- name: create checksum file | |
uses: hypertrace/github-actions/checksum@main | |
- name: Cache packages | |
id: cache-packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.gradle | |
key: gradle-packages-${{ runner.os }}-${{ github.job }}-${{ hashFiles('**/checksum.txt') }} | |
restore-keys: | | |
gradle-packages-${{ runner.os }}-${{ github.job }} | |
gradle-packages-${{ runner.os }} | |
- name: smoke-test | |
run: make smoke-test SMOKE_TEST_SUITE=${{ matrix.suite }} | |
env: | |
JVM_OPTS: -Xmx1g | |
TERM: dumb |