From 8339508f21a388d0c9746b50c5e5483251efcd38 Mon Sep 17 00:00:00 2001 From: Matthew Budd Date: Fri, 15 May 2020 16:06:18 -0400 Subject: [PATCH] Added an appveyor pipeline configure file to allow for a side by side build of both the windows and linux application. --- appveyor.yml | 8 ++++++++ azure-pipelines.yml | 2 +- {azure => pipelines}/linux_build.sh | 0 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 appveyor.yml rename {azure => pipelines}/linux_build.sh (100%) diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..ff7c0140 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,8 @@ +version: 1.0.{build} +image: +- Visual Studio 2019 +- Ubuntu2004 + #- Ubuntu1804 +build_script: +- cmd: msbuild "./vc/vc14_fceux.sln" +- sh: ./pipelines/linux_build.sh diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e0acee95..8365c84a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,5 +12,5 @@ pool: steps: - script: | - ./azure/linux_build.sh + ./pipelines/linux_build.sh displayName: 'make' diff --git a/azure/linux_build.sh b/pipelines/linux_build.sh similarity index 100% rename from azure/linux_build.sh rename to pipelines/linux_build.sh