Skip to content

Commit

Permalink
fixed issue #110
Browse files Browse the repository at this point in the history
  • Loading branch information
Code-Hex committed Nov 6, 2022
1 parent 97120d4 commit 819c622
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,15 @@ jobs:
with:
go-version: ${{ matrix.go }}
cache: true
- name: vet
run: go vet ./...
- name: Download Linux kernel
run: make download_kernel
- name: Unit Test
run: make test
- name: Build
run: cd example/linux && make
- name: vet
run: go vet ./...
- name: Build Linux
run: make -C example/linux
- name: Build macOS
run: make -C example/macOS
- name: Build GUI Linux
run: make -C example/gui-linux
4 changes: 2 additions & 2 deletions example/gui-linux/rosseta_directory_share.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build !darwin && !arm64
// +build !darwin,!arm64
//go:build darwin && !arm64
// +build darwin,!arm64

package main

Expand Down

0 comments on commit 819c622

Please sign in to comment.