Update go.yml
This commit is contained in:
parent
d4172ca8bd
commit
94afc60543
1 changed files with 6 additions and 6 deletions
12
.github/workflows/go.yml
vendored
12
.github/workflows/go.yml
vendored
|
|
@ -21,7 +21,7 @@ jobs:
|
|||
- 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
|
||||
run: sudo apt-get install -y gcc pkg-config
|
||||
- name: Build
|
||||
run: go build -v .
|
||||
- name: Test
|
||||
|
|
@ -41,9 +41,9 @@ jobs:
|
|||
with:
|
||||
go-version: '1.20'
|
||||
- name: Build
|
||||
run: go build -tags "nofido2 noautofill" -v .
|
||||
run: go build -tags "nofido2" -v .
|
||||
- name: Test
|
||||
run: go test -tags "nofido2 noautofill" -v .
|
||||
run: go test -tags "nofido2" -v .
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: goldwarden-macos
|
||||
|
|
@ -59,10 +59,10 @@ jobs:
|
|||
with:
|
||||
go-version: '1.20'
|
||||
- name: Build
|
||||
run: go build -tags "nofido2 noautofill" -v .
|
||||
run: go build -tags "nofido2" -v .
|
||||
- name: Test
|
||||
run: go test -tags "nofido2 noautofill" -v .
|
||||
run: go test -tags "nofido2" -v .
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: goldwarden-windows.exe
|
||||
path: ./goldwarden.exe
|
||||
path: ./goldwarden.exe
|
||||
|
|
|
|||
Loading…
Reference in a new issue