[fc] delay fc startup until metadata is updated #85
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: PulsarVeniceIntegrationCI | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
PulsarVeniceIntegrationTests: | |
strategy: | |
fail-fast: false | |
matrix: | |
jdk: [8, 11, 17] | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.jdk }} | |
distribution: 'temurin' | |
cache: 'gradle' | |
- shell: bash | |
run: | | |
git remote set-head origin --auto | |
git remote add upstream https://github.com/linkedin/venice | |
git fetch upstream | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build with gradle | |
run: ./gradlew assemble --continue --no-daemon -DforkEvery=1 -DmaxParallelForks=1 | |
- name: Build docker images for Venice (latest-dev tag) | |
shell: bash | |
run: | | |
cd ${{ github.workspace }}/docker | |
./build-venice-docker-images.sh | |
cd ${{ github.workspace }} | |
- name: Build docker images for Pulsar test (latest-dev tag) | |
shell: bash | |
run: | | |
cd ${{ github.workspace }}/tests/docker-images/pulsar-sink | |
docker build --tag=pulsar/venice-test:latest-dev ${{ github.workspace }} -f ./Dockerfile | |
cd ${{ github.workspace }} | |
- name: Run the test | |
shell: bash | |
run: | | |
./gradlew :tests:venice-pulsar-test:pulsarIntegrationTest -i | |
- name: Package Build Artifacts | |
if: success() || failure() | |
shell: bash | |
run: | | |
mkdir ${{ github.job }}-artifacts | |
find . -path "**/build/reports/*" -or -path "**/build/test-results/*" > artifacts.list | |
rsync -R --files-from=artifacts.list . ${{ github.job }}-artifacts | |
tar -zcvf ${{ github.job }}-artifacts.tar.gz ${{ github.job }}-artifacts | |
- name: Upload Build Artifacts | |
if: success() || failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ github.job }} | |
path: ${{ github.job }}-artifacts.tar.gz | |
retention-days: 30 |