Skip to content

Commit

Permalink
Try to simply revert back web test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacalz committed Dec 25, 2023
1 parent eb7b0e4 commit 8e20b6c
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/web_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,16 @@ permissions:
jobs:
web_tests:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
go-version: ['1.19.x', '1.21.x']

steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: WillAbides/[email protected]
with:
go-version: ${{ matrix.go-version }}
go-version: '1.17.x'

- name: Get dependencies
run: sudo apt-get update && sudo apt-get install gcc libgl1-mesa-dev libegl1-mesa-dev libgles2-mesa-dev libx11-dev xorg-dev
Expand All @@ -30,7 +27,8 @@ jobs:
working-directory: cmd/fyne_demo
run: go build

- name: Build WASM full website
- name: Build GopherJS and Wasm full website
run: |
go install github.com/gopherjs/gopherjs@latest
go install ./cmd/fyne
cd cmd/fyne_demo && fyne package --target=wasm
cd cmd/fyne_demo && fyne package --target=web

0 comments on commit 8e20b6c

Please sign in to comment.