From c7ff4d69b847ae95b76d3a36286c207e59e2d87b Mon Sep 17 00:00:00 2001 From: Bubblegnash <68607369+Bubblegnash@users.noreply.github.com> Date: Mon, 26 Jul 2021 17:52:06 +0200 Subject: [PATCH 1/2] added linux build support via docker --- appveyor.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 392a2dfa4..e715974db 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,6 +6,7 @@ platform: environment: NODE_OPTIONS: --max-old-space-size=7168 NODE_ENV: development + DOCKER_BUILDKIT: 1 branches: only: - master @@ -26,6 +27,8 @@ build_script: - node_modules/.bin/tsc -p tsconfig.serve.json - node_modules/.bin/ng build -c production - node_modules/.bin/electron-builder build --windows --publish never + - docker build -o release . + - ps: Remove-Item -Path release/linux-unpacked - ps: Compress-Archive -Path release -DestinationPath publish.zip artifacts: - path: 'release\*.*' From 5f5c14e769ccff6d4b0c9bcf2980f8098c2eadea Mon Sep 17 00:00:00 2001 From: Bubblegnash <68607369+Bubblegnash@users.noreply.github.com> Date: Mon, 26 Jul 2021 18:22:25 +0200 Subject: [PATCH 2/2] testing if it works with a more recent image on appveyor --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index e715974db..59a2b2386 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ version: 1.0.{build} image: - - Visual Studio 2017 + - Visual Studio 2019 platform: - x64 environment: