Skip to content

Commit ffe7e57

Browse files
committed
Temporaily disable Windows build CI
Note: #3967
1 parent 9c6f289 commit ffe7e57

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

.github/workflows/cppcmake.yml

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,18 @@ jobs:
5555
with:
5656
NIGHTLY: ${{ github.event_name == 'schedule' || inputs.NIGHTLY == true }}
5757

58-
build-windows:
59-
needs: check-skippable
60-
if: needs.check-skippable.outputs.skip != 'true'
61-
uses: ./.github/workflows/cppcmake-windows.yml
62-
secrets: inherit
63-
with:
64-
NIGHTLY: ${{ github.event_name == 'schedule' || inputs.NIGHTLY == true }}
58+
# build-windows:
59+
# needs: check-skippable
60+
# if: needs.check-skippable.outputs.skip != 'true'
61+
# uses: ./.github/workflows/cppcmake-windows.yml
62+
# secrets: inherit
63+
# with:
64+
# NIGHTLY: ${{ github.event_name == 'schedule' || inputs.NIGHTLY == true }}
6565

6666
release:
6767
if: github.event_name != 'pull_request'
68-
needs: [build-macos, build-ubuntu, build-windows]
68+
needs: [build-macos, build-ubuntu]
69+
# needs: [build-macos, build-ubuntu, build-windows]
6970
name: Release
7071
runs-on: ubuntu-24.04
7172
env:
@@ -83,17 +84,18 @@ jobs:
8384
with:
8485
path: target
8586

86-
- name: Remove unsigned Windows build
87-
run: rm -rfv target/*unsigned*
87+
# - name: Remove unsigned Windows build
88+
# run: rm -rfv target/*unsigned*
8889

8990
- run: find target -type f -exec mv -v {} target \;
9091

91-
- name: Unarchive Windows's build artifacts
92-
run: for f in target/*.zip; do unzip -d target/ "$f" && rm -v "$f"; done
92+
# - name: Unarchive Windows's build artifacts
93+
# run: for f in target/*.zip; do unzip -d target/ "$f" && rm -v "$f"; done
9394

9495
- name: Release
9596
uses: softprops/action-gh-release@v2
9697
with:
98+
body: "The Windows build will not be provided for the time being. Note: #3967"
9799
files: target/*
98100
prerelease: true
99101
tag_name: ${{ env.tag_name }}

0 commit comments

Comments
 (0)