goldwarden/.github/workflows/go.yml

99 lines
2.9 KiB
YAML
Raw Normal View History

2023-08-03 02:47:26 +03:00
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
2023-08-24 00:26:38 +03:00
linux:
2023-08-03 02:47:26 +03:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Install libfido2-dev
run: sudo apt-get install -y libfido2-dev
- name: Install gio dependencies
run: sudo apt-get install -y gcc pkg-config libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev libvulkan-dev
2023-08-24 00:30:20 +03:00
- name: Build
2023-08-24 23:18:45 +03:00
run: go build -v .
2023-08-03 02:47:26 +03:00
- name: Test
2023-08-24 23:18:45 +03:00
run: go test -v .
2023-09-19 23:56:27 +03:00
- uses: actions/upload-artifact@v3
with:
name: goldwarden-linux
path: ./goldwarden
linux-packaging:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
2023-09-20 00:13:57 +03:00
- name: Install libfido2-dev
run: sudo apt-get install -y libfido2-dev
- name: Install gio dependencies
run: sudo apt-get install -y gcc pkg-config libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev libvulkan-dev
2023-09-20 00:06:42 +03:00
- name: Validate ArchLinux PKGBUILD
uses: hapakaien/archlinux-package-action@v2
with:
flags: ''
namcap: true
updpkgsums: true
2023-09-20 00:32:34 +03:00
- name: Makepkg Build and Check
id: makepkg
uses: edlanglois/pkgbuild-action@v1
with:
aurDeps: true
2023-09-19 23:56:27 +03:00
- name: Convert to deb
uses: bpicode/github-action-fpm@master
with:
fpm_args: './build'
fpm_opts: '--debug -n goldwarden -t deb -s pacman'
- name: Convert to rpm
uses: bpicode/github-action-fpm@master
with:
fpm_args: './build'
fpm_opts: '--debug -n goldwarden -t rpm -s pacman'
2023-08-24 00:26:38 +03:00
macos:
2023-09-19 23:56:27 +03:00
runs-on: macos-latest
2023-08-24 00:26:38 +03:00
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
2023-08-24 00:30:20 +03:00
- name: Build
2023-08-24 23:18:45 +03:00
run: go build -tags "nofido2 noautofill" -v .
2023-08-24 00:30:20 +03:00
- name: Test
2023-08-24 23:18:45 +03:00
run: go test -tags "nofido2 noautofill" -v .
2023-09-19 23:56:27 +03:00
- uses: actions/upload-artifact@v3
with:
name: goldwarden-macos
path: ./goldwarden
2023-08-24 00:26:38 +03:00
windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
2023-08-24 00:30:20 +03:00
- name: Build
2023-08-24 23:18:45 +03:00
run: go build -tags "nofido2 noautofill" -v .
2023-08-24 00:30:20 +03:00
- name: Test
2023-08-24 23:18:45 +03:00
run: go test -tags "nofido2 noautofill" -v .
2023-09-19 23:56:27 +03:00
- uses: actions/upload-artifact@v3
with:
name: goldwarden-windows.exe
path: ./goldwarden.exe