From b68ab011fe6abd02a4be3c7124ffc784ae0f6691 Mon Sep 17 00:00:00 2001 From: Sam Gammon Date: Sun, 13 Aug 2023 17:23:27 -0700 Subject: [PATCH] fix: build invocation on windows Signed-off-by: Sam Gammon --- .github/workflows/module.build.yml | 5 +---- .github/workflows/module.test.yml | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/module.build.yml b/.github/workflows/module.build.yml index 1d4e2cfa..68c134ee 100644 --- a/.github/workflows/module.build.yml +++ b/.github/workflows/module.build.yml @@ -74,7 +74,4 @@ jobs: - name: "Build: Example" continue-on-error: ${{ inputs.labs }} shell: bash - run: | - bazel build \ - --config=ci \ - //... + run: bazel build --config=ci "//..." diff --git a/.github/workflows/module.test.yml b/.github/workflows/module.test.yml index a279bc3a..0f928603 100644 --- a/.github/workflows/module.test.yml +++ b/.github/workflows/module.test.yml @@ -124,7 +124,4 @@ jobs: continue-on-error: ${{ inputs.labs }} working-directory: ${{ matrix.directory }} shell: bash - run: | - bazel \ - ${{ matrix.action || 'build' }} \ - ${{ matrix.target || '//...' }} + run: bazel ${{ matrix.action || 'build' }} "${{ matrix.target || '//...' }}"