chore(deps): Bump apache/skywalking-eyes from 775fe1ffda59b7e100aa144d0ef8d7beae17f97d to 3ea9df11bb3a5a85665377d1fd10c02edecf2c40 #38570
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: Connector Node Integration Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
merge_group: | |
types: [ checks_requested ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '11', '17' ] | |
name: Java ${{ matrix.java }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
java: | |
- 'java/**' | |
proto: | |
- 'proto/**' | |
- name: Set up JDK ${{ matrix.java }} | |
if: steps.filter.outputs.java == 'true' || steps.filter.outputs.proto == 'true' | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'adopt' | |
cache: 'maven' | |
- name: run integration tests | |
if: steps.filter.outputs.java == 'true' || steps.filter.outputs.proto == 'true' | |
run: | | |
set -ex | |
RISINGWAVE_ROOT=${PWD} | |
echo "--- build connector node" | |
cd ${RISINGWAVE_ROOT}/java | |
# run unit test | |
# WARN: `testOnNext_writeValidation` is skipped because it relies on Rust code to decode message, | |
# while we don't build Rust code (`-Dno-build-rust`) here to save time | |
mvn --batch-mode --update-snapshots clean package -Dno-build-rust \ | |
'-Dtest=!com.risingwave.connector.sink.SinkStreamObserverTest#testOnNext_writeValidation' \ | |
-Dsurefire.failIfNoSpecifiedTests=false |