Skip to content

Commit dc44ba7

Browse files
author
darkhan.nausharipov
committed
Merge branch 'master' into issue25255-delete-account
2 parents 3f3747c + 8cfee7d commit dc44ba7

502 files changed

Lines changed: 23199 additions & 10215 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/setup-self-hosted-action/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ inputs:
3434
required: false
3535
description: 'Set as false if does not require java-8 setup'
3636
default: 'true'
37-
requires-go-18:
37+
requires-go-19:
3838
required: false
39-
description: 'Set as false if does not require go-18 setup'
39+
description: 'Set as false if does not require go-19 setup'
4040
default: 'true'
4141

4242
runs:
@@ -64,7 +64,7 @@ runs:
6464
distribution: 'temurin'
6565
java-version: 8
6666
- name: Set Go Version
67-
if: ${{ inputs.requires-go-18 == 'true' }}
67+
if: ${{ inputs.requires-go-19 == 'true' }}
6868
uses: actions/setup-go@v3
6969
with:
70-
go-version: '1.18.0'
70+
go-version: '1.19.0'

.github/workflows/build_playground_frontend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
name: Build Playground Frontend App
3535
runs-on: [self-hosted, ubuntu-20.04]
3636
env:
37-
GO_VERSION: 1.18.0
37+
GO_VERSION: 1.19.6
3838
BEAM_VERSION: 2.40.0
3939
TERRAFORM_VERSION: 1.0.9
4040
FLUTTER_VERSION: 3.3.2

.github/workflows/git_tag_released_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ on:
3232

3333
jobs:
3434
generate_tags:
35-
runs-on: [self-hosted, ubuntu-20.04]
35+
runs-on: ubuntu-latest
3636
env:
3737
VERSION_PATH: ${{ github.event.inputs.VERSION_TAG }}
3838
steps:

.github/workflows/go_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ concurrency:
3535
cancel-in-progress: true
3636
jobs:
3737
build:
38-
runs-on: [self-hosted, ubuntu-20.04]
38+
runs-on: ubuntu-latest
3939
name: Go Build
4040
steps:
4141
- name: Check out code
@@ -44,12 +44,12 @@ jobs:
4444
fetch-depth: 2
4545
- uses: actions/setup-go@v3
4646
with:
47-
go-version: '1.18'
47+
go-version: '1.19'
4848
- name: Delete old coverage
4949
run: "cd sdks/go/pkg && rm -rf .coverage || :"
5050
- name: Run coverage
5151
run: cd sdks/go/pkg && go test -coverprofile=coverage.txt -covermode=atomic ./...
52-
- uses: codecov/codecov-action@v2
52+
- uses: codecov/codecov-action@v3
5353
with:
5454
flags: go
5555
files: ./sdks/go/pkg/coverage.txt

.github/workflows/issue-tagger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020

2121
jobs:
2222
label:
23-
runs-on: [self-hosted, ubuntu-20.04]
23+
runs-on: ubuntu-latest
2424
permissions:
2525
issues: write
2626
steps:

.github/workflows/java_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
check_gcp_variables:
4444
timeout-minutes: 5
4545
name: "Check GCP variables set"
46-
runs-on: [self-hosted, ubuntu-20.04]
46+
runs-on: ubuntu-latest
4747
outputs:
4848
gcp-variables-set: ${{ steps.check_gcp_variables.outputs.gcp-variables-set }}
4949
steps:
@@ -66,7 +66,7 @@ jobs:
6666
strategy:
6767
fail-fast: false
6868
matrix:
69-
os: [[self-hosted, ubuntu-20.04], macos-latest, [self-hosted, windows-server-2019]]
69+
os: [ubuntu-latest, macos-latest, windows-latest]
7070
steps:
7171
- name: Check out code
7272
uses: actions/checkout@v3
@@ -125,7 +125,7 @@ jobs:
125125
strategy:
126126
fail-fast: false
127127
matrix:
128-
os: [[self-hosted, ubuntu-20.04], macos-latest, [self-hosted, windows-server-2019]]
128+
os: [ubuntu-latest, macos-latest, windows-latest]
129129
steps:
130130
- name: Check out code
131131
uses: actions/checkout@v3
@@ -164,7 +164,7 @@ jobs:
164164
strategy:
165165
fail-fast: false
166166
matrix:
167-
os: [[self-hosted, ubuntu-20.04],[self-hosted, windows-server-2019]]
167+
os: [ubuntu-latest,windows-latest]
168168
if: |
169169
needs.check_gcp_variables.outputs.gcp-variables-set == 'true' && (
170170
(github.event_name == 'push' || github.event_name == 'schedule') ||

.github/workflows/label_prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on: [pull_request_target]
2121
permissions: read-all
2222
jobs:
2323
label:
24-
runs-on: [self-hosted, ubuntu-20.04]
24+
runs-on: ubuntu-latest
2525
permissions:
2626
contents: read
2727
pull-requests: write

.github/workflows/playground_deploy_backend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
name: Build Playground Backend App
3535
runs-on: ubuntu-latest
3636
env:
37-
GO_VERSION: 1.18.0
37+
GO_VERSION: 1.19.6
3838
BEAM_VERSION: 2.40.0
3939
TERRAFORM_VERSION: 1.0.9
4040
STAND_SUFFIX: ''
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one or more
2+
# contributor license agreements. See the NOTICE file distributed with
3+
# this work for additional information regarding copyright ownership.
4+
# The ASF licenses this file to You under the Apache License, Version 2.0
5+
# (the "License"); you may not use this file except in compliance with
6+
# the License. You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
16+
name: Playground Frontend Test
17+
18+
on:
19+
push:
20+
paths: ['playground/frontend/**']
21+
branches: ['**']
22+
pull_request:
23+
paths: ['playground/frontend/**']
24+
branches: ['**']
25+
workflow_dispatch:
26+
27+
# This allows a subsequently queued workflow run to interrupt previous runs
28+
concurrency:
29+
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
30+
cancel-in-progress: true
31+
32+
jobs:
33+
playground_frontend_test:
34+
name: Playground Frontend Test
35+
runs-on: ubuntu-latest
36+
37+
env:
38+
FLUTTER_VERSION: '3.7.3'
39+
40+
steps:
41+
- uses: actions/checkout@v3
42+
43+
- name: 'Cache Flutter Dependencies'
44+
uses: actions/cache@v3
45+
with:
46+
path: /opt/hostedtoolcache/flutter
47+
key: ${{ runner.OS }}-flutter-install-cache-${{ env.FLUTTER_VERSION }}
48+
restore-keys: ${{ runner.OS }}-flutter-install-cache
49+
50+
- uses: subosito/flutter-action@v2
51+
with:
52+
flutter-version: ${{ env.FLUTTER_VERSION }}
53+
channel: 'stable'
54+
55+
- name: 'Install Dependencies'
56+
working-directory: playground/frontend
57+
run: |
58+
cd playground_components && flutter pub get && cd ..
59+
cd playground_components_dev && flutter pub get && cd ..
60+
flutter pub get
61+
62+
# - name: 'Formatting'
63+
# run: dart format --output=none --set-exit-if-changed .
64+
65+
# - name: 'Analyze playground_components'
66+
# working-directory: playground/frontend/playground_components
67+
# run: dart analyze --fatal-infos
68+
69+
# - name: 'Analyze playground_components_dev'
70+
# working-directory: playground/frontend/playground_components_dev
71+
# run: dart analyze --fatal-infos
72+
73+
# - name: 'Analyze playground'
74+
# working-directory: playground/frontend
75+
# run: dart analyze --fatal-infos lib test
76+
77+
- name: 'Test playground_components'
78+
working-directory: playground/frontend/playground_components
79+
run: flutter test
80+
81+
- name: 'Test playground'
82+
working-directory: playground/frontend
83+
run: flutter test
84+
85+
- uses: nanasess/setup-chromedriver@v1
86+
87+
- name: 'Integration tests'
88+
run: |
89+
cp playground/frontend/lib/config.example.dart playground/frontend/lib/config.g.dart
90+
chromedriver --port=4444 &
91+
./gradlew :playground:frontend:integrationTest -PdeviceId=web-server

.github/workflows/pr-bot-new-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
statuses: read
3232
# Don't run on forks
3333
if: github.repository == 'apache/beam'
34-
runs-on: [self-hosted, ubuntu-20.04]
34+
runs-on: ubuntu-latest
3535
steps:
3636
- uses: actions/checkout@v3
3737
- name: Setup Node

0 commit comments

Comments
 (0)