mirror of
https://github.com/zeldaret/mm.git
synced 2026-09-01 01:21:56 -04:00
b6904aa2cc
* remove ZAPD submodule * git subrepo clone https://github.com/zeldaret/ZAPD.git tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "ca229f19" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "ca229f19" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * git subrepo clone https://github.com/simonlindholm/decomp-permuter.git tools/decomp-permuter subrepo: subdir: "tools/decomp-permuter" merged: "1e4b85a7" upstream: origin: "https://github.com/simonlindholm/decomp-permuter.git" branch: "main" commit: "1e4b85a7" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Remove asm-differ * git subrepo clone https://github.com/simonlindholm/asm-differ.git tools/asm-differ subrepo: subdir: "tools/asm-differ" merged: "eaf72269" upstream: origin: "https://github.com/simonlindholm/asm-differ.git" branch: "master" commit: "eaf72269" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * remove asm-processor * git subrepo clone https://github.com/simonlindholm/asm-processor.git tools/asm-processor subrepo: subdir: "tools/asm-processor" merged: "85288fcd" upstream: origin: "https://github.com/simonlindholm/asm-processor.git" branch: "master" commit: "85288fcd" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * remove .gitmodules file * Update REAMDE * Update warnings
46 lines
1.0 KiB
YAML
46 lines
1.0 KiB
YAML
name: Systray
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
paths:
|
|
- 'src/net/cmd/systray/*'
|
|
pull_request:
|
|
branches: [ main ]
|
|
paths:
|
|
- 'src/net/cmd/systray/*'
|
|
|
|
jobs:
|
|
|
|
build:
|
|
name: Build on ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- os: ubuntu-16.04
|
|
binary: permuter-systray-linux
|
|
- os: windows-latest
|
|
binary: permuter-systray.exe
|
|
- os: macos-latest
|
|
binary: permuter-systray-macos
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
|
|
- name: Install gtk3
|
|
if: ${{ matrix.os == 'ubuntu-16.04' }}
|
|
run: sudo apt-get install libgtk-3-dev libappindicator3-dev
|
|
|
|
- name: Setup Go environment
|
|
uses: actions/setup-go@v2.1.3
|
|
|
|
- name: Build
|
|
run: go build -o ${{ matrix.binary }} -ldflags "-s -w" tray.go
|
|
working-directory: src/net/cmd/systray/
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ${{ matrix.binary }}
|
|
path: src/net/cmd/systray/${{ matrix.binary }}
|