Skip to content

Commit

Permalink
add flows for win, mac
Browse files Browse the repository at this point in the history
  • Loading branch information
alkoleft committed Aug 26, 2023
1 parent 5b4629a commit 4af53e0
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/run-tests-linux.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run tests
name: Run tests on Linux

on:
workflow_call:
Expand All @@ -20,6 +20,7 @@ concurrency:
jobs:
execute-tests:
runs-on: ubuntu-20.04
steps:

- name: download artifact
uses: actions/download-artifact@v3
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/run-tests-macos.yml
Original file line number Diff line number Diff line change
@@ -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 changes: 24 additions & 0 deletions .github/workflows/run-tests-windows.yml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 4af53e0

Please sign in to comment.