Skip to content

Commit

Permalink
Merge pull request #111 from Code-Hex/fix/issue-110
Browse files Browse the repository at this point in the history
fixed build error example for GUI Linux in x86_64
  • Loading branch information
Code-Hex authored Nov 6, 2022
2 parents 97120d4 + 19893d5 commit 9de1c10
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,13 @@ 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 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 9de1c10

Please sign in to comment.