From b5bca6143067df029622c11527be91844f1a7dcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vinicius=20Louren=C3=A7o?= <12551007+H4ad@users.noreply.github.com> Date: Wed, 1 Nov 2023 22:26:50 -0300 Subject: [PATCH] meta: replace build-windows for test-windows --- .../{build-windows.yml => test-windows.yml} | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) rename .github/workflows/{build-windows.yml => test-windows.yml} (77%) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/test-windows.yml similarity index 77% rename from .github/workflows/build-windows.yml rename to .github/workflows/test-windows.yml index 3c7012017df7d9..3a39a672e1be51 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/test-windows.yml @@ -1,11 +1,11 @@ -name: Build Windows +name: Test Windows on: pull_request: paths-ignore: - README.md - .github/** - - '!.github/workflows/build-windows.yml' + - '!.github/workflows/test-windows.yml' types: [opened, synchronize, reopened, ready_for_review] push: branches: @@ -16,7 +16,7 @@ on: paths-ignore: - README.md - .github/** - - '!.github/workflows/build-windows.yml' + - '!.github/workflows/test-windows.yml' concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} @@ -45,9 +45,13 @@ jobs: uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 with: python-version: ${{ env.PYTHON_VERSION }} - - name: Install deps - run: choco install nasm - name: Environment Information run: npx envinfo + - name: Install deps + run: choco install nasm - name: Build run: ./vcbuild.bat + - name: Test + run: ./vcbuild.bat release noprojgen nobuild ignore-flaky test-ci-js + env: + test_ci_args: -p actions --node-args=--test-reporter=spec --node-args=--test-reporter-destination=stdout --measure-flakiness 9