-
Notifications
You must be signed in to change notification settings - Fork 52
68 lines (61 loc) · 1.61 KB
/
main-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Build and test
on:
push:
branches: [ feature/**, develop ]
pull_request_target:
branches: [ develop ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.number }}
cancel-in-progress: true
permissions:
contents: read
checks: write
id-token: write
jobs:
export_to_designer:
name: Export to designer xml
uses: ./.github/workflows/export-xml.yml
with:
edt_version: 2023.1.2
artifact_name: designer-src
secrets: inherit
build_artifacts:
name: Build artifacts
uses: ./.github/workflows/build-on-windows.yml
needs: export_to_designer
with:
v8_version: 8.3.21.1895
secrets: inherit
tests_linux_ru:
name: Tests Linux 8.3.21.1895 ru_RU
uses: ./.github/workflows/run-tests-linux.yml
if: github.ref == 'refs/heads/develop'
needs: build_artifacts
with:
v8_version: 8.3.21.1895
secrets: inherit
tests_linux_en:
name: Tests Linux 8.3.21.1895 en_US
uses: ./.github/workflows/run-tests-linux.yml
if: github.ref == 'refs/heads/develop'
needs: build_artifacts
with:
v8_version: 8.3.21.1895
locale: en_US
secrets: inherit
tests_windows_ru:
name: Tests Windows 8.3.21.1895 ru_RU
uses: ./.github/workflows/run-tests-windows.yml
needs: build_artifacts
with:
v8_version: 8.3.21.1895
locale: ru_RU
secrets: inherit
tests_windows_en:
name: Tests Windows 8.3.21.1895 en_US
uses: ./.github/workflows/run-tests-windows.yml
needs: build_artifacts
with:
v8_version: 8.3.21.1895
locale: en_US
secrets: inherit