-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request sonatype-nexus-community#2 from zendern/full-on-pr…
…oject Full on project
- Loading branch information
Showing
11 changed files
with
1,440 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,13 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
- image: debian:stretch | ||
docker: | ||
- image: circleci/golang:1.13 | ||
steps: | ||
- checkout | ||
- run: | ||
name: Install Nancy | ||
command: | | ||
cd /tmp && mkdir tools && cd - | ||
apt-get update && apt install -y curl | ||
curl -s -L "https://github.com/sonatype-nexus-community/nancy/releases/download/v0.0.39/nancy-linux.amd64-v0.0.39" -o "/tmp/tools/nancy" | ||
chmod +x /tmp/tools/nancy | ||
name: Validate we can run it | ||
command: go run main.go | ||
- run: | ||
name: Run Nancy | ||
command: /tmp/tools/nancy ~/project/go.sum | ||
command: ./build.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.DS_Store | ||
.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
language: minimal | ||
language: go | ||
|
||
before_script: | ||
- cd /tmp && mkdir tools && cd - | ||
- sudo curl -s -L "https://github.com/sonatype-nexus-community/nancy/releases/download/0.0.39/nancy-linux.amd64-0.0.39" -o "/tmp/tools/nancy" | ||
- sudo chmod +x /tmp/tools/nancy | ||
- export PATH=$PATH:/tmp/tools/ | ||
|
||
script: | ||
- nancy Gopkg.lock | ||
script: | ||
- go run main.go | ||
- ./build.sh |
Oops, something went wrong.