mirror of
https://github.com/bia-technologies/yaxunit.git
synced 2024-12-12 09:04:01 +02:00
add flows for win, mac
This commit is contained in:
parent
5b4629a28a
commit
4af53e031e
3
.github/workflows/run-tests-linux.yml
vendored
3
.github/workflows/run-tests-linux.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Run tests
|
name: Run tests on Linux
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
@ -20,6 +20,7 @@ concurrency:
|
|||||||
jobs:
|
jobs:
|
||||||
execute-tests:
|
execute-tests:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
|
||||||
- name: download artifact
|
- name: download artifact
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
|
24
.github/workflows/run-tests-macos.yml
vendored
Normal file
24
.github/workflows/run-tests-macos.yml
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
name: Run tests on MacOS
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
v8_version:
|
||||||
|
description: 'Platform version'
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
locale:
|
||||||
|
type: string
|
||||||
|
required: false
|
||||||
|
default: ru_RU
|
||||||
|
artifact_name:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.v8_version }}-${{ inputs.locale }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
jobs:
|
||||||
|
execute-tests:
|
||||||
|
runs-on: macos-latest
|
||||||
|
steps:
|
||||||
|
- run: echo 'empty'
|
24
.github/workflows/run-tests-windows.yml
vendored
Normal file
24
.github/workflows/run-tests-windows.yml
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
name: Run tests on Windows
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
v8_version:
|
||||||
|
description: 'Platform version'
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
locale:
|
||||||
|
type: string
|
||||||
|
required: false
|
||||||
|
default: ru_RU
|
||||||
|
artifact_name:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.v8_version }}-${{ inputs.locale }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
jobs:
|
||||||
|
execute-tests:
|
||||||
|
runs-on: windows-latest
|
||||||
|
steps:
|
||||||
|
- run: echo 'empty'
|
Loading…
Reference in New Issue
Block a user