trying to fix the goddam import error

This commit is contained in:
caue 2020-03-28 22:15:10 -03:00
parent 3fbf56a14c
commit bc4437b7a5
2 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ os: Visual Studio 2017
# - x64 # - x64
# - x86 # - x86
clone_folder: c:\gopath\src\github.com\robotn\gohook clone_folder: c:\gopath\src\github.com\cauefcr\ghook
# Environment variables # Environment variables
environment: environment:
@ -59,7 +59,7 @@ install:
build_script: build_script:
# We need to disable firewall - https://github.com/appveyor/ci/issues/1579#issuecomment-309830648 # We need to disable firewall - https://github.com/appveyor/ci/issues/1579#issuecomment-309830648
- ps: Disable-NetFirewallRule -DisplayName 'File and Printer Sharing (SMB-Out)' - ps: Disable-NetFirewallRule -DisplayName 'File and Printer Sharing (SMB-Out)'
- cd c:\gopath\src\github.com\robotn\gohook - cd c:\gopath\src\github.com\cauefcr\ghook
- git branch - git branch
- go get -t ./... - go get -t ./...
@ -67,7 +67,7 @@ build_script:
test_script: test_script:
# Unit tests # Unit tests
- ps: Add-AppveyorTest "Unit Tests" -Outcome Running - ps: Add-AppveyorTest "Unit Tests" -Outcome Running
- go test -u github.com/robotn/gohook... - go test -u github.com/cauefcr/ghook...
- ps: Update-AppveyorTest "Unit Tests" -Outcome Passed - ps: Update-AppveyorTest "Unit Tests" -Outcome Passed
# notifications: # notifications:

View File

@ -5,7 +5,7 @@ jobs:
docker: docker:
# using custom image, see .circleci/images/primary/Dockerfile # using custom image, see .circleci/images/primary/Dockerfile
- image: govgo/robotgoci:1.10.3 - image: govgo/robotgoci:1.10.3
working_directory: /gopath/src/github.com/robotn/gohook working_directory: /gopath/src/github.com/cauefcr/ghook
steps: steps:
- checkout - checkout
# specify any bash command here prefixed with `run: ` # specify any bash command here prefixed with `run: `