From 8710bfa15d8be52a85347c92df68611ee5b79c13 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Mon, 26 Oct 2020 01:27:21 +0100 Subject: [PATCH 1/2] ci-test-msi --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e121a1c993..1e7c407394 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,9 +45,12 @@ jobs: - name: Build Release run: make build-release - - name: make-wix + - name: Build MSI (windows) if: matrix.os == 'windows-latest' - run: make release-win + run: | + cargo install cargo-wix + cargo wix init + cargo wix --no-build --nocapture build-linux-musl: runs-on: ubuntu-latest From fddc32d7ceb0b3c3ecead05c11cc293191d91db0 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Mon, 26 Oct 2020 01:29:52 +0100 Subject: [PATCH 2/2] fix indent --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e7c407394..4427f787eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,8 +49,8 @@ jobs: if: matrix.os == 'windows-latest' run: | cargo install cargo-wix - cargo wix init - cargo wix --no-build --nocapture + cargo wix init + cargo wix --no-build --nocapture build-linux-musl: runs-on: ubuntu-latest