Skip to content

Commit

Permalink
abs root
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangyiming748 committed Nov 30, 2023
1 parent 4d445f9 commit b5b71b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
- name: ls
run: ls /home/runner/work/processAll/processAll
- name: Build for linux amd64
run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -v -o process4LinuxAmd64 ./../main.go
run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -v -o process4LinuxAmd64 /home/runner/work/processAll/processAll/main.go
- name: Build for linux arm64
run: CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -v -o process4LinuxAmd64 ./../main.go
run: CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -v -o process4LinuxAmd64 /home/runner/work/processAll/processAll/main.go
- name: Build for linux windows 64
run: CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -v -o process4Win64.exe ./../main.go
run: CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -v -o process4Win64.exe /home/runner/work/processAll/processAll/main.go
- name: Build for mac 64
run: CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -v -o process4Mac ./../main.go
run: CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -v -o process4Mac /home/runner/work/processAll/processAll/main.go
# - name: Test
# run: go test -v ./...

0 comments on commit b5b71b5

Please sign in to comment.