From 4af53e031ec0ad02f84dc6090137d7a34bd234c0 Mon Sep 17 00:00:00 2001 From: alkoleft Date: Sun, 27 Aug 2023 02:33:30 +0300 Subject: [PATCH] add flows for win, mac --- .github/workflows/run-tests-linux.yml | 3 ++- .github/workflows/run-tests-macos.yml | 24 ++++++++++++++++++++++++ .github/workflows/run-tests-windows.yml | 24 ++++++++++++++++++++++++ 3 files changed, 50 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/run-tests-macos.yml create mode 100644 .github/workflows/run-tests-windows.yml diff --git a/.github/workflows/run-tests-linux.yml b/.github/workflows/run-tests-linux.yml index db6dd4df..9aba7dac 100644 --- a/.github/workflows/run-tests-linux.yml +++ b/.github/workflows/run-tests-linux.yml @@ -1,4 +1,4 @@ -name: Run tests +name: Run tests on Linux on: workflow_call: @@ -20,6 +20,7 @@ concurrency: jobs: execute-tests: runs-on: ubuntu-20.04 + steps: - name: download artifact uses: actions/download-artifact@v3 diff --git a/.github/workflows/run-tests-macos.yml b/.github/workflows/run-tests-macos.yml new file mode 100644 index 00000000..d9ecebce --- /dev/null +++ b/.github/workflows/run-tests-macos.yml @@ -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' diff --git a/.github/workflows/run-tests-windows.yml b/.github/workflows/run-tests-windows.yml new file mode 100644 index 00000000..e813a964 --- /dev/null +++ b/.github/workflows/run-tests-windows.yml @@ -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'