Remove windows-gnu build code

These builds have been deprecated,
so we don't need to keep this code around anymore.
This commit is contained in:
Aneesh Agrawal 2017-04-14 20:38:53 -04:00
parent b37f4952bd
commit 0df627e9e8
2 changed files with 2 additions and 13 deletions

View file

@ -100,21 +100,11 @@ arm64:
- bash ./etc/ci/lockfile_changed.sh
- bash ./etc/ci/manifest_changed.sh
windows-gnu-dev:
- ./mach build --dev
- ./mach test-unit
- ./mach build-geckolib
windows-msvc-dev:
- mach.bat build --dev
- mach.bat test-unit
- mach.bat build-geckolib
windows-gnu-nightly:
- ./mach build --release
- ./mach package --release
- ./etc/ci/upload_nightly.sh windows-gnu
windows-msvc-nightly:
- mach.bat build --release
- mach.bat package --release

View file

@ -12,7 +12,7 @@ shopt -s failglob
usage() {
printf \
"usage: %s android|linux|mac|macbrew|windows-gnu|windows-msvc\n" \
"usage: %s android|linux|mac|macbrew|windows-msvc\n" \
"${0}"
}
@ -89,8 +89,7 @@ main() {
elif [[ "${platform}" == "macbrew" ]]; then
extension=tar.gz
package=target/release/brew/*."${extension}"
elif [[ "${platform}" == "windows-gnu" ||
"${platform}" == "windows-msvc" ]]; then
elif [[ "${platform}" == "windows-msvc" ]]; then
extension=msi
package=target/release/msi/*.msi
else