feat(sink-elasticsearch): https and refactor metrics #112
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: "recursive" | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: "11" | |
distribution: "adopt" | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: build images | |
run: make build_images_for_ci | |
- name: run test | |
run: | | |
make pull_images | |
cd integration_tests | |
./gradlew test --rerun-tasks --info --fail-fast | |
- uses: actions/upload-artifact@v2 | |
if: ${{ success() }} || ${{ failure() }} | |
with: | |
name: logs | |
path: | | |
integration_tests/.logs | |
/tmp/io/tasks | |
integration_tests/app/build/reports |