2023-05-30 13:25:47 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build Rolens
|
|
|
|
|
|
|
|
strategy:
|
2023-05-30 19:03:36 +00:00
|
|
|
fail-fast: false
|
2023-05-30 13:25:47 +00:00
|
|
|
matrix:
|
2023-06-02 15:23:39 +00:00
|
|
|
platform: [windows-2022, macos-12, ubuntu-22.04]
|
2023-05-30 13:25:47 +00:00
|
|
|
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 }}
|
2023-05-30 19:52:54 +00:00
|
|
|
cache-dependency-path: go.sum
|
2023-05-30 13:25:47 +00:00
|
|
|
|
|
|
|
- name: Install Wails
|
|
|
|
run: go install github.com/wailsapp/wails/v2/cmd/wails@latest
|
|
|
|
|
2023-06-02 15:29:35 +00:00
|
|
|
- name: Install Wails dependencies for Linux
|
|
|
|
if: matrix.platform == 'ubuntu-22.04'
|
2023-06-02 15:40:14 +00:00
|
|
|
run: sudo apt-get install gtk+-3.0 webkit2gtk-4.0 gio-unix-2.0
|
2023-06-02 15:29:35 +00:00
|
|
|
|
2023-05-30 13:25:47 +00:00
|
|
|
- name: Set up Node.js
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2023-05-30 19:52:54 +00:00
|
|
|
cache: npm
|
|
|
|
cache-dependency-path: frontend/package-lock.json
|
2023-05-30 13:25:47 +00:00
|
|
|
|
|
|
|
- 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/*
|