From 5d59723df8ac89faf11a590a1afd585691ea45e4 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 17 Apr 2021 11:34:18 -0500 Subject: [PATCH] Add AppVeyor CI --- appveyor.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..5d447e6 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,27 @@ +version: 0.0.0.{build} + +clone_depth: 1 + +image: Ubuntu2004 + +install: + - 'pushd $HOME' + - 'wget https://github.com/Kagami/nacl_sdk/archive/refs/heads/master.zip -O nacl_sdk.zip' + - 'unzip nacl_sdk.zip' + - 'cd nacl_sdk-master' + - 'source $HOME/venv2.7/bin/activate' + - './naclsdk update' + - 'export NACL_SDK_ROOT=$HOME/nacl_sdk-master/pepper_49' + - 'popd' + +before_build: + - 'git submodule update --init --recursive' + +build_script: + - 'make -j$(nproc)' + +after_build: + - 'zip -r moonlight-chrome.zip . -x ".git/*"' + - 'appveyor PushArtifact moonlight-chrome.zip' + +deploy: off