Created
March 13, 2019 17:26
-
-
Save Frago9876543210/b2f00f9c4c8eaf03f7144e43b17023ac to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/appveyor.yml b/appveyor.yml | |
index d59cfd2..7c77a1f 100644 | |
--- a/appveyor.yml | |
+++ b/appveyor.yml | |
@@ -1,13 +1,14 @@ | |
-image: Visual Studio 2017 | |
+image: Ubuntu1804 | |
version: php-7.2-appveyor{build} | |
-clone_folder: c:\pmmp\windows-php | |
build_script: | |
-- ps: >- | |
- .\windows-compile-vs.bat | |
+- sh: >- | |
+ sudo apt update > /dev/null | |
- Push-AppveyorArtifact 'compile.log' | |
+ sudo apt install -y make autoconf automake libtool m4 wget gzip bzip2 bison g++ git libtool libtool-bin > /dev/null | |
- rm -r -Force bin | |
+ ./compile.sh -t linux64 -j4 -f x86_64 | |
+ | |
+ tar czvf bin.tar.gz bin | |
artifacts: | |
-- path: '*php-*.zip' | |
-- path: 'compile.log' | |
+- path: 'bin.tar.gz' | |
+- path: '*.log' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment