From 53719cd33fa593ae05ff33429e824844dab18a25 Mon Sep 17 00:00:00 2001 From: Mateusz Daniluk <121170681+VeithMetro@users.noreply.github.com> Date: Mon, 9 Oct 2023 15:15:16 +0200 Subject: [PATCH 1/2] Changing Windows build action to logical sum to catch potential fails --- .github/workflows/Build ThunderInterfaces on Windows.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Build ThunderInterfaces on Windows.yml b/.github/workflows/Build ThunderInterfaces on Windows.yml index 255cf202..917a0c12 100644 --- a/.github/workflows/Build ThunderInterfaces on Windows.yml +++ b/.github/workflows/Build ThunderInterfaces on Windows.yml @@ -2,7 +2,7 @@ name: Build ThunderInterfaces on Windows on: push: - branches: ["master"] + # branches: ["master"] pull_request: branches: ["master"] @@ -70,10 +70,10 @@ jobs: - name: Build ThunderInterfaces shell: cmd - run: | + run: > cd ThunderOnWindows - "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%definitions%" "%solution%" - "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%interfaces%" "%solution%" + && "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%definitions%" "%solution%" + && "%devEnv%" /Build "${{matrix.type}}|x${{matrix.version}}" /Project "%interfaces%" "%solution%" - name: Tar files run: tar -czvf ${{matrix.type}}${{matrix.version}}.tar.gz artifacts From e486ca8fa17e1ce383656ccaaff51481a9eeac70 Mon Sep 17 00:00:00 2001 From: Mateusz Daniluk <121170681+VeithMetro@users.noreply.github.com> Date: Tue, 10 Oct 2023 08:53:27 +0200 Subject: [PATCH 2/2] Removing the local test to prepare for a pull request --- .github/workflows/Build ThunderInterfaces on Windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Build ThunderInterfaces on Windows.yml b/.github/workflows/Build ThunderInterfaces on Windows.yml index 917a0c12..2dd1ea4f 100644 --- a/.github/workflows/Build ThunderInterfaces on Windows.yml +++ b/.github/workflows/Build ThunderInterfaces on Windows.yml @@ -2,7 +2,7 @@ name: Build ThunderInterfaces on Windows on: push: - # branches: ["master"] + branches: ["master"] pull_request: branches: ["master"]