From 71c96a21c31a87e9ede5008cdf5dbc460792ecb7 Mon Sep 17 00:00:00 2001 From: Steffen Pankratz Date: Thu, 31 Mar 2022 20:23:44 +0200 Subject: [PATCH] Remove outdated CI pipeline configuration and mentions. Signed-off-by: Steffen Pankratz --- .appveyor-linux.yml | 67 ------------- .appveyor-windows.yml | 213 ------------------------------------------ README.md | 9 -- 3 files changed, 289 deletions(-) delete mode 100644 .appveyor-linux.yml delete mode 100644 .appveyor-windows.yml diff --git a/.appveyor-linux.yml b/.appveyor-linux.yml deleted file mode 100644 index dbd11c8..0000000 --- a/.appveyor-linux.yml +++ /dev/null @@ -1,67 +0,0 @@ -image: Ubuntu - -environment: - matrix: - - CC: clang - CXX: clang++ - - CC: gcc - CXX: g++ - -configuration: - - Debug - - Release - -for: - - - matrix: - only: - - configuration: Debug - CC: clang - environment: - CFLAGS: -Og -Weverything -Wno-c++98-compat -Wno-c++98-compat-pedantic - CXXFLAGS: -Og -Weverything -Wno-c++98-compat -Wno-c++98-compat-pedantic - - - - matrix: - only: - - configuration: Release - CC: clang - environment: - CFLAGS: -O2 - CXXFLAGS: -O2 - - - - matrix: - only: - - configuration: Debug - CC: gcc - environment: - CFLAGS: -Og -g -Wall -Wextra - CXXFLAGS: -Og -g -Wall -Wextra - - - - matrix: - only: - - configuration: Release - CC: gcc - environment: - CFLAGS: -O2 - CXXFLAGS: -O2 - -init: - - $CC --version - - $CXX --version - - cmake --version - -before_build: - - cd $APPVEYOR_BUILD_FOLDER - - mkdir build - - cd build - -build_script: - - cmake .. -DCMAKE_BUILD_TYPE=$configuration -DCMAKE_INSTALL_PREFIX=/var/tmp/unshield - - cmake --build . - - cmake --install . - -test_script: - - ../run-tests.sh diff --git a/.appveyor-windows.yml b/.appveyor-windows.yml deleted file mode 100644 index b82366f..0000000 --- a/.appveyor-windows.yml +++ /dev/null @@ -1,213 +0,0 @@ -image: Visual Studio 2019 - -cache: C:\Tools\vcpkg\installed\ - -environment: - APPVEYOR_SAVE_CACHE_ON_ERROR: true - matrix: - - compiler: clang - - compiler: msvc - - compiler: gcc - -platform: - - x86-windows - - x64-windows - -configuration: - - Debug - - Release - -for: - - - matrix: - only: - - configuration: Debug - platform: x86-windows - compiler: clang - environment: - CC: clang-cl - CXX: clang-cl - CFLAGS: -Og -Weverything -Wno-c++98-compat -Wno-c++98-compat-pedantic -m32 - CXXFLAGS: -Og -Weverything -Wno-c++98-compat -Wno-c++98-compat-pedantic -m32 - build_script: - - call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\Build\\vcvars32.bat" - - cmake .. -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Debug -GNinja - - cmake --build . - - - - matrix: - only: - - configuration: Release - platform: x86-windows - compiler: clang - environment: - CC: clang-cl - CXX: clang-cl - CFLAGS: -O2 -m32 - CXXFLAGS: -O2 -m32 - build_script: - - call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\Build\\vcvars32.bat" - - cmake .. -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Release -GNinja - - cmake --build . - - - - matrix: - only: - - configuration: Debug - platform: x86-windows - compiler: msvc - build_script: - - call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\Build\\vcvars32.bat" - - cmake .. -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -AWin32 - - cmake --build . --config Debug - - - - matrix: - only: - - configuration: Release - platform: x86-windows - compiler: msvc - build_script: - - call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\Build\\vcvars32.bat" - - cmake .. -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -AWin32 - - cmake --build . --config Release - - - - matrix: - only: - - configuration: Debug - platform: x86-windows - compiler: gcc - environment: - CC: gcc - CXX: g++ - CFLAGS: -Og -g -Wall -Wextra - CXXFLAGS: -Og -g -Wall -Wextra - build_script: - - SET PATH=C:\\mingw-w64\\i686-8.1.0-posix-dwarf-rt_v6-rev0\\mingw32\\bin;%PATH% - - call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\Build\\vcvars32.bat" - - cmake .. -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Debug -G"MinGW Makefiles" - - cmake --build . - - - - matrix: - only: - - configuration: Release - platform: x86-windows - compiler: gcc - environment: - CC: gcc - CXX: g++ - CFLAGS: -O2 - CXXFLAGS: -O2 - build_script: - - SET PATH=C:\\mingw-w64\\i686-8.1.0-posix-dwarf-rt_v6-rev0\\mingw32\\bin;%PATH% - - call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\Build\\vcvars32.bat" - - cmake .. -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Release -G"MinGW Makefiles" - - cmake --build . - - - - matrix: - only: - - configuration: Debug - platform: x64-windows - compiler: clang - environment: - CC: clang-cl - CXX: clang-cl - CFLAGS: -Og -Weverything -Wno-c++98-compat -Wno-c++98-compat-pedantic - CXXFLAGS: -Og -Weverything -Wno-c++98-compat -Wno-c++98-compat-pedantic - build_script: - - call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\Build\\vcvars64.bat" - - cmake .. -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Debug -GNinja - - cmake --build . - - - - matrix: - only: - - configuration: Release - platform: x64-windows - compiler: clang - environment: - CC: clang-cl - CXX: clang-cl - CFLAGS: -O2 - CXXFLAGS: -O2 - build_script: - - call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\Build\\vcvars64.bat" - - cmake .. -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Release -GNinja - - cmake --build . - - - - matrix: - only: - - configuration: Debug - platform: x64-windows - compiler: msvc - build_script: - - call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\Build\\vcvars64.bat" - - cmake .. -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -Ax64 - - cmake --build . --config Debug - - - - matrix: - only: - - configuration: Release - platform: x64-windows - compiler: msvc - build_script: - - call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\Build\\vcvars64.bat" - - cmake .. -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -Ax64 - - cmake --build . --config Release - - - - matrix: - only: - - configuration: Debug - platform: x64-windows - compiler: gcc - environment: - CC: gcc - CXX: g++ - CFLAGS: -Og -g -Wall -Wextra - CXXFLAGS: -Og -g -Wall -Wextra - build_script: - - SET PATH=C:\\mingw-w64\\x86_64-8.1.0-posix-seh-rt_v6-rev0\\mingw64\\bin;%PATH% - - call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\Build\\vcvars64.bat" - - cmake .. -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Debug -G"MinGW Makefiles" - - cmake --build . - - - - matrix: - only: - - configuration: Release - platform: x64-windows - compiler: gcc - environment: - CC: gcc - CXX: g++ - CFLAGS: -O2 - CXXFLAGS: -O2 - build_script: - - SET PATH=C:\\mingw-w64\\x86_64-8.1.0-posix-seh-rt_v6-rev0\\mingw64\\bin;%PATH% - - call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\Build\\vcvars64.bat" - - cmake .. -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Release -G"MinGW Makefiles" - - cmake --build . - -before_build: - - cd %APPVEYOR_BUILD_FOLDER% - - mkdir build - - cd build - -install: - - cd C:\Tools\vcpkg -#msys repos are temporary down, downloading two dependencies manuallly from a mirror repo - - if not exist downloads mkdir downloads - - cd downloads - - curl -O https://mirrors.ustc.edu.cn/msys2/mingw/i686/mingw-w64-i686-pkg-config-0.29.2-1-any.pkg.tar.xz - - curl -O https://mirrors.ustc.edu.cn/msys2/mingw/i686/mingw-w64-i686-libwinpthread-git-8.0.0.5906.c9a21571-1-any.pkg.tar.zst - - cd .. -#end of the hotfix - - vcpkg install zlib:%platform% openssl:%platform% - - cd %APPVEYOR_BUILD_FOLDER% - diff --git a/README.md b/README.md index cae426d..cdd919a 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,10 @@ Unshield ======== -[![Build Status](https://travis-ci.org/twogood/unshield.png?branch=master)](https://travis-ci.org/twogood/unshield) [![Packaging status](https://repology.org/badge/tiny-repos/unshield.svg)](https://repology.org/project/unshield/versions) [![Homebrew package](https://repology.org/badge/version-for-repo/homebrew/unshield.svg)](https://repology.org/project/unshield/versions) -#### Microsoft Windows build -[![Appveyor Build status](https://ci.appveyor.com/api/projects/status/rnjlecanres5au3q?svg=true)](https://ci.appveyor.com/project/twogood/unshield) - -[Download page](https://ci.appveyor.com/project/twogood/unshield/build/artifacts) - -Note: The Microsoft Windows build is currently broken even if Appveyor doesn't notice, sorry about that! A PR to fix this is welcome! - - Support Unshield development ----------------------------