Skip to content

Remove Avro-related code from Java SDK "core" module #2

Remove Avro-related code from Java SDK "core" module

Remove Avro-related code from Java SDK "core" module #2

# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Tour Of Beam Frontend Test
on:
push:
paths:
- 'learning/tour-of-beam/frontend/**'
- 'playground/frontend/playground_components'
branches: ['**']
pull_request:
paths:
- 'learning/tour-of-beam/frontend/**'
- 'playground/frontend/playground_components'
branches: ['**']
workflow_dispatch:
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.issue.number || github.event.pull_request.head.label || github.sha || github.head_ref || github.ref }}-${{ github.event.schedule || github.event.comment.body || github.event.sender.login}}'
cancel-in-progress: true
env:
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GE_CACHE_USERNAME }}
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GE_CACHE_PASSWORD }}
jobs:
tour_of_beam_test:
name: Tour of Beam Frontend Test
runs-on: ubuntu-latest
env:
FLUTTER_VERSION: '3.10.4'
steps:
- uses: actions/checkout@v4
- name: 'Cache Flutter Dependencies'
uses: actions/cache@v3
with:
path: /opt/hostedtoolcache/flutter
key: ${{ runner.OS }}-flutter-install-cache-${{ env.FLUTTER_VERSION }}
restore-keys: ${{ runner.OS }}-flutter-install-cache
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: 'stable'
- name: 'Install Dependencies'
run: |
cd playground/frontend/playground_components && flutter pub get && cd -
cd playground/frontend/playground_components_dev && flutter pub get && cd -
cd learning/tour-of-beam/frontend && flutter pub get && cd -
- uses: nanasess/setup-chromedriver@v2
- name: 'Integration tests'
run: |
chromedriver --port=4444 &
./gradlew :learning:tour-of-beam:frontend:integrationTest -PdeviceId=web-server