From d687c1b62ee0c6f5ec58598c4890a87d3267c3a8 Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Wed, 16 Oct 2024 21:59:58 +0200 Subject: [PATCH] [FIXUP] Use pwrshell on Windows? --- .github/workflows/maven.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 2a0c41b42d..993292677b 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -34,9 +34,6 @@ jobs: - { name: MacOS ARM, os: macos-latest, native: cocoa.macosx.aarch64 } name: Verify ${{ matrix.config.name }} with Java-${{ matrix.java }} runs-on: ${{ matrix.config.os }} - defaults: - run: - shell: ${{ contains(matrix.config.native, 'win32') && 'cmd' || 'bash' }} steps: - name: checkout swt uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 @@ -68,13 +65,13 @@ jobs: mvn --batch-mode -V -U -e --threads 1C -DforkCount=1 - -Dnative=${{ matrix.config.native }} + '-Dnative=${{ matrix.config.native }}' -Papi-check - -Dtycho.baseline.replace=none + '-Dtycho.baseline.replace=none' --fail-at-end -DskipNativeTests=false -DfailIfNoTests=false - -Dtycho.version=4.0.8 + '-Dtycho.version=4.0.8' clean install - name: Performance tests if: contains(github.event.pull_request.labels.*.name, 'performance')