From e7712d558194f488988fd9f0c81ffe91a6c7d1ac Mon Sep 17 00:00:00 2001 From: Marc Fehling Date: Wed, 17 Jul 2024 14:10:26 +0200 Subject: [PATCH] No need to specify shell. --- .github/workflows/windows.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 4f4f07420b..a5891bf727 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -44,7 +44,6 @@ jobs: cmake -h wmic logicaldisk get size, freespace, caption - name: configure - shell: bash run: | mkdir build mkdir c:/project @@ -53,18 +52,15 @@ jobs: - name: print detailed.log run: type build/detailed.log - name: build library - shell: bash run: | cmake --build build --parallel 2 --target install - name: test library - shell: bash run: | cmake --build build --parallel 2 --target setup_tests_a-framework cmake --build build --parallel 2 --target test - name: archive library # run only if a PR is merged into master if: ${{ github.ref == 'refs/heads/master' && matrix.os == 'windows-2022' }} - shell: bash run: | cd c:/project 7z a dealii-windows.zip * -- 2.39.5