Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(gh-ci): Bring back the client-test-data command to github actions #1804

Merged
merged 4 commits into from Jan 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Expand Up @@ -52,6 +52,32 @@ jobs:
df -h
docker system df

# ------------------------------------------
# ------------------------------------------
# Test client-test-data
client-test-data-tests:
name: Test client-test-data
needs: compile
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 50
- uses: joschi/setup-jdk@v2
with:
java-version: '11' # The OpenJDK version to make available on the path
architecture: 'x64' # defaults to 'x64'
- name: Install requirements
run: sudo apt-get install ca-certificates-java expect redis-tools unzip
- name: Generate api-client-test-data
run: make client-test-data
- name: Disk Free After
run: |
df -h
docker system df
# ------------------------------------------
# ------------------------------------------

api-unit-tests:
name: API Unit Tests
needs: compile
Expand Down Expand Up @@ -320,6 +346,7 @@ jobs:
api-unit-tests,
api-e2e-tests,
api-integration-tests,
client-test-data-tests,
upgrade-integration-tests,
docs-build-test
]
Expand Down