aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-11-06 15:38:46 -0400
committerJames McCoy <jamessan@jamessan.com>2021-11-14 08:51:39 -0500
commit7bd6f12b3edd5c42956034b2f1c8a9ea14b9bcdc (patch)
tree1f6281672127db19e2fb44961aab2c520ea1c741
parent27f8b04f1791c29825bbe4b10e4a8db9472ecaee (diff)
downloadrneovim-7bd6f12b3edd5c42956034b2f1c8a9ea14b9bcdc.tar.gz
rneovim-7bd6f12b3edd5c42956034b2f1c8a9ea14b9bcdc.tar.bz2
rneovim-7bd6f12b3edd5c42956034b2f1c8a9ea14b9bcdc.zip
ci!: remove win32 builds/releases
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--.github/workflows/notes.md3
-rw-r--r--.github/workflows/release.yml11
3 files changed, 4 insertions, 12 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5bedafefd0..d07b9fdac7 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -103,7 +103,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- config: [ MINGW_64-gcov, MINGW_32, MSVC_64, MSVC_32 ]
+ config: [ MINGW_64-gcov, MSVC_64 ]
name: windows (${{ matrix.config }})
steps:
- uses: actions/checkout@v2
diff --git a/.github/workflows/notes.md b/.github/workflows/notes.md
index 20f998ff32..9928d472b3 100644
--- a/.github/workflows/notes.md
+++ b/.github/workflows/notes.md
@@ -6,7 +6,7 @@ ${NVIM_VERSION}
### Windows
-1. Extract **nvim-win64.zip** (or **nvim-win32.zip**)
+1. Extract **nvim-win64.zip**
2. Run `nvim-qt.exe`
### macOS
@@ -37,5 +37,4 @@ ${SHA_APP_IMAGE}
${SHA_APP_IMAGE_ZSYNC}
${SHA_MACOS}
${SHA_WIN_64}
-${SHA_WIN_32}
```
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 9333449a6c..f1ed05e6cb 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -125,8 +125,6 @@ jobs:
include:
- config: MSVC_64
archive: nvim-win64
- - config: MSVC_32
- archive: nvim-win32
name: windows (${{ matrix.config }})
steps:
- uses: actions/checkout@v2
@@ -207,11 +205,6 @@ jobs:
cd ./nvim-macos
sha256sum nvim-macos.tar.gz > nvim-macos.tar.gz.sha256sum
echo "SHA_MACOS=$(cat nvim-macos.tar.gz.sha256sum)" >> $GITHUB_ENV
- - name: Generate Win32 SHA256 checksums
- run: |
- cd ./nvim-win32
- sha256sum nvim-win32.zip > nvim-win32.zip.sha256sum
- echo "SHA_WIN_32=$(cat nvim-win32.zip.sha256sum)" >> $GITHUB_ENV
- name: Generate Win64 SHA256 checksums
run: |
cd ./nvim-win64
@@ -223,7 +216,7 @@ jobs:
NVIM_VERSION: ${{ needs.linux.outputs.version }}
run: |
envsubst < "$GITHUB_WORKSPACE/.github/workflows/notes.md" > "$RUNNER_TEMP/notes.md"
- gh release create $TAG_NAME $PRERELEASE --notes-file "$RUNNER_TEMP/notes.md" --title "$SUBJECT" --target $GITHUB_SHA nvim-macos/* nvim-linux64/* appimage/* nvim-win32/* nvim-win64/*
+ gh release create $TAG_NAME $PRERELEASE --notes-file "$RUNNER_TEMP/notes.md" --title "$SUBJECT" --target $GITHUB_SHA nvim-macos/* nvim-linux64/* appimage/* nvim-win64/*
if [ "$TAG_NAME" != "nightly" ]; then
- gh release create stable $PRERELEASE --notes-file "$RUNNER_TEMP/notes.md" --title "$SUBJECT" --target $GITHUB_SHA nvim-macos/* nvim-linux64/* appimage/* nvim-win32/* nvim-win64/*
+ gh release create stable $PRERELEASE --notes-file "$RUNNER_TEMP/notes.md" --title "$SUBJECT" --target $GITHUB_SHA nvim-macos/* nvim-linux64/* appimage/* nvim-win64/*
fi