Skip to content

Instantly share code, notes, and snippets.

@Frago9876543210
Created March 13, 2019 17:26
Show Gist options
  • Save Frago9876543210/b2f00f9c4c8eaf03f7144e43b17023ac to your computer and use it in GitHub Desktop.
Save Frago9876543210/b2f00f9c4c8eaf03f7144e43b17023ac to your computer and use it in GitHub Desktop.
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