Skip to content

Commit dff1134

Browse files
mstoykovolegbespalov
authored andcommittedDec 16, 2024
Run e2e tests on windows gotip
1 parent d2d5ff2 commit dff1134

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed
 

‎.github/workflows/browser_e2e.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,19 @@ defaults:
1717
jobs:
1818
test:
1919
strategy:
20+
fail-fast: false
2021
matrix:
2122
go: [stable, tip]
2223
platform: [ubuntu-latest, windows-latest, macos-latest]
2324
runs-on: ${{ matrix.platform }}
2425
steps:
2526
- name: Checkout code
26-
if: matrix.go != 'tip' || matrix.platform != 'windows-latest'
2727
uses: actions/checkout@v4
2828
- name: Install Go
29-
if: matrix.go != 'tip' || matrix.platform != 'windows-latest'
3029
uses: actions/setup-go@v5
3130
with:
3231
go-version: 1.x
3332
- name: Install Go tip
34-
if: matrix.go == 'tip' && matrix.platform != 'windows-latest'
3533
env:
3634
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3735
run: |
@@ -42,15 +40,13 @@ jobs:
4240
echo "$HOME/go/bin" >> "$GITHUB_PATH"
4341
echo "$HOME/sdk/gotip/bin" >> "$GITHUB_PATH"
4442
- name: Build k6
45-
if: matrix.go != 'tip' || matrix.platform != 'windows-latest'
4643
run: |
4744
which go
4845
go version
4946
5047
go build .
5148
./k6 version
5249
- name: Run E2E tests
53-
if: matrix.go != 'tip' || matrix.platform != 'windows-latest'
5450
run: |
5551
set -x
5652
if [ "$RUNNER_OS" == "Linux" ]; then
@@ -65,6 +61,5 @@ jobs:
6561
./k6 run -q "$f"
6662
done
6763
- name: Check screenshot
68-
if: matrix.go != 'tip' || matrix.platform != 'windows-latest'
6964
# TODO: Do something more sophisticated?
7065
run: test -s screenshot.png

0 commit comments

Comments
 (0)