Skip to content

build(deps): bump fyne.io/fyne/v2 from 2.4.3 to 2.4.4 (#44) #120

build(deps): bump fyne.io/fyne/v2 from 2.4.3 to 2.4.4 (#44)

build(deps): bump fyne.io/fyne/v2 from 2.4.3 to 2.4.4 (#44) #120

Workflow file for this run

name: Build
on:
push:
branches:
- master
paths-ignore:
- '**.png'
- '**.md'
pull_request:
branches:
- master
paths-ignore:
- '**.png'
- '**.md'
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go: [1.17, 1.18]
runs-on: ${{ matrix.os }}
steps:
- name: Install dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install pkg-config libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev xorg-dev libvulkan-dev
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ matrix.os }}-go-${{ matrix.go }}-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-${{ matrix.go }}-
- name: Build Gio
run: |
go run tools/mage.go build:gio
- name: Build Fyne
run: |
go run tools/mage.go build:fyne
- name: Artifacts Gio
uses: actions/upload-artifact@v4
with:
name: gio-${{ matrix.os }}-${{ matrix.go }}
path: build/gio
- name: Artifacts Fyne
uses: actions/upload-artifact@v4
with:
name: fyne-${{ matrix.os }}-${{ matrix.go }}
path: build/fyne