mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-01-19 05:27:57 +00:00
57 lines
1.3 KiB
YAML
57 lines
1.3 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build Rolens
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform: [windows-2022, macos-12, ubuntu-22.04]
|
|
go-version: [1.18]
|
|
node-version: [16]
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
cache-dependency-path: go.sum
|
|
|
|
- name: Install Wails
|
|
run: go install github.com/wailsapp/wails/v2/cmd/wails@latest
|
|
|
|
- name: Install Wails dependencies for Linux
|
|
if: matrix.platform == 'ubuntu-22.04'
|
|
run: sudo dnf install gtk3-devel webkit2gtk4.0-devel webkit2gtk3-devel gcc-c++
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: npm
|
|
cache-dependency-path: frontend/package-lock.json
|
|
|
|
- name: Install frontend dependencies
|
|
run: cd frontend && npm ci && cd ..
|
|
|
|
- name: Build Rolens
|
|
run: wails build
|
|
|
|
- name: Upload binary
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: rolens-${{ matrix.platform }}
|
|
path: build/bin/*
|