Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: "1.27.0"
go-version: "1.27.1"
- run: go version
- name: Vet
run: CGO_ENABLED=0 go vet ./...
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: "1.27.0"
go-version: "1.27.1"
- name: Vet
run: go vet ./...
env:
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: "1.27.0"
go-version: "1.27.1"
- run: CGO_ENABLED=0 go test ./...

arch-qemu:
Expand All @@ -121,7 +121,7 @@ jobs:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: "1.27.0"
go-version: "1.27.1"
- run: sudo apt-get update && sudo apt-get install -y qemu-user-static
- name: Test under qemu (${{ matrix.goarch }})
run: CGO_ENABLED=0 GOARCH=${{ matrix.goarch }} go test -exec=${{ matrix.qemu }} ./...
Expand All @@ -140,7 +140,7 @@ jobs:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: "1.27.0"
go-version: "1.27.1"
- name: Byte-identity + damage-measurement proof
run: CGO_ENABLED=0 go test -run TestHostRootPixelIdentityAndDamage -v ./render/...

Expand All @@ -161,7 +161,7 @@ jobs:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: "1.27.0"
go-version: "1.27.1"
- name: Install Xvfb + capture + icon themes
run: sudo apt-get update && sudo apt-get install -y xvfb x11-apps imagemagick dbus adwaita-icon-theme hicolor-icon-theme
- name: Run the live windowed integration test under Xvfb
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: "1.27.0"
go-version: "1.27.1"
- name: Capture the native-macOS shell + assert pixels/input
env:
DESKTOP_COCOA_CAPTURE: "1"
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: "1.27.0"
go-version: "1.27.1"
- name: Cross-compile the portable packages + client for js/wasm
run: GOOS=js GOARCH=wasm CGO_ENABLED=0 go build ./shell/... ./source/... ./render/... ./clients/...
- name: Link the wasmdesk client wasm
Expand All @@ -265,7 +265,7 @@ jobs:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: "1.27.0"
go-version: "1.27.1"
- uses: actions/setup-node@v7
with:
node-version: "20"
Expand Down Expand Up @@ -300,7 +300,7 @@ jobs:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: "1.27.0"
go-version: "1.27.1"
- name: Install bricolint
run: go install github.com/go-widgets/bricolint/cmd/bricolint@v0.1.0
- name: Guard against hand-drawn UI
Expand Down
Loading