mirror of
https://github.com/bia-technologies/yaxunit.git
synced 2024-12-03 08:45:31 +02:00
7e0e893f9e
* export on linux * build on windows * test on windows & linux
64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
name: Build and test
|
|
on:
|
|
push:
|
|
branches: [ feature/**, develop ]
|
|
pull_request_target:
|
|
branches: [ develop ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
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
|
|
src_artifact_name: designer-src
|
|
artifact_name: build-artifacts
|
|
secrets: inherit
|
|
|
|
tests_linux_ru:
|
|
name: Tests Linux 8.3.21.1895 ru_RU
|
|
uses: ./.github/workflows/run-tests-linux.yml
|
|
needs: build_artifacts
|
|
with:
|
|
v8_version: 8.3.21.1895
|
|
artifact_name: build-artifacts
|
|
secrets: inherit
|
|
|
|
tests_linux_en:
|
|
name: Tests Linux 8.3.21.1895 en_US
|
|
uses: ./.github/workflows/run-tests-linux.yml
|
|
if: false
|
|
needs: build_artifacts
|
|
with:
|
|
v8_version: 8.3.21.1895
|
|
artifact_name: build-artifacts
|
|
locale: en_US
|
|
fail_on_failure: false
|
|
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
|
|
artifact_name: build-artifacts
|
|
secrets: inherit |