-
Notifications
You must be signed in to change notification settings - Fork 22
42 lines (38 loc) · 1.18 KB
/
go.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Build Dynamite
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: ['1.20.x']
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Get dependencies
run: sudo apt-get update && sudo apt-get install gcc libgl1-mesa-dev libx11-dev xorg-dev libwayland-dev libxkbcommon-dev bc
if: ${{ runner.os == 'Linux' }}
- name: Build
run: go build -v ./...
- name: Upload Go build results linux
uses: actions/upload-artifact@v3
if: ${{ runner.os == 'Linux' }}
with:
name: Dynamite-Linux
path: dynamite
- name: Upload Go build results windows
uses: actions/upload-artifact@v3
if: ${{ runner.os == 'Windows' }}
with:
name: Dynamite-Windows
path: dynamite.exe
- name: Upload Go build results macos
uses: actions/upload-artifact@v3
if: ${{ runner.os == 'macOS' }}
with:
name: Dynamite-macOS
path: dynamite