From 64ef4b134982dab84c4283cd443e9112f3c37084 Mon Sep 17 00:00:00 2001 From: Shane Lee Date: Fri, 12 Jul 2024 14:47:55 -0600 Subject: [PATCH] Add simple workflow for Windows Installer Tests --- .../test-installer-action-windows.yml | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/test-installer-action-windows.yml diff --git a/.github/workflows/test-installer-action-windows.yml b/.github/workflows/test-installer-action-windows.yml new file mode 100644 index 00000000000..cf0b48556bb --- /dev/null +++ b/.github/workflows/test-installer-action-windows.yml @@ -0,0 +1,38 @@ +--- +name: Test Windows Installer + +on: pull_request + +permissions: + contents: read + +jobs: + Test-Windows-Installer: + runs-on: + - windows-latest + + steps: + + - name: Checkout Salt + uses: actions/checkout@v4 + + - name: Set Up Python 3.10 + uses: actions/setup-python@v5 + with: + python-version: "3.10" + + - name: Install NSIS + run: .\pkg\windows\install_nsis.cmd -CICD + shell: cmd + + - name: Build Test Installer + run: .\pkg\windows\nsis\tests\setup.cmd -CICD + shell: cmd + + - name: Run Stress Test + run: .\pkg\windows\nsis\tests\test.cmd -CICD .\stress_tests + shell: cmd + + - name: Run Config Tests + run: .\pkg\windows\nsis\tests\test.cmd -CICD .\config_tests + shell: cmd