Skip to content

Commit

Permalink
ci(e2e): commenting out windows compatibility (to do later)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreszorro committed Nov 20, 2024
1 parent fdc66fa commit 8e57b2d
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,14 @@ jobs:
run: |
export STRUCTURIZR_CLI_PATH=./dist/structurizr-cli-bin/structurizr.sh
bun test:e2e
- name: E2E Test (Smoke) (Windows)
if: ${{ inputs.smoke && matrix.os == 'windows' }}
run: |
$env:STRUCTURIZR_CLI_PATH = ".\dist\structurizr-cli-bin\structurizr.bat"
bun test:e2e:smoke
- name: E2E Test (Full) (Windows)
if: ${{ !inputs.smoke && matrix.os == 'windows' }}
run: |
$env:STRUCTURIZR_CLI_PATH = ".\dist\structurizr-cli-bin\structurizr.bat"
bun test:e2e
# TODO: Windows E2E Tests
# - name: E2E Test (Smoke) (Windows)
# if: ${{ inputs.smoke && matrix.os == 'windows' }}
# run: |
# $env:STRUCTURIZR_CLI_PATH = ".\dist\structurizr-cli-bin\structurizr.bat"
# bun test:e2e:smoke
# - name: E2E Test (Full) (Windows)
# if: ${{ !inputs.smoke && matrix.os == 'windows' }}
# run: |
# $env:STRUCTURIZR_CLI_PATH = ".\dist\structurizr-cli-bin\structurizr.bat"
# bun test:e2e

0 comments on commit 8e57b2d

Please sign in to comment.