Skip to content

Commit

Permalink
Clean up gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Reichenberger committed Mar 31, 2021
1 parent 22f6ce6 commit 4bdb63a
Show file tree
Hide file tree
Showing 17 changed files with 2,063 additions and 27 deletions.
22 changes: 1 addition & 21 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,6 @@ jobs:
- checkout
- run:
command: go test ./...
upload_assets:
docker:
- image: golang:1.14
steps:
- checkout
- run: apt update && apt install file jq -y
- run:
command: bin/build
- run:
command: bin/upload ${CIRCLE_TAG}

workflows:
version: 2
Expand All @@ -39,14 +29,4 @@ workflows:
context: semantic-release
filters:
branches:
only: master

tag:
jobs:
- upload_assets:
context: semantic-release
filters:
tags:
only: /.*/
branches:
ignore: /.*/
only: master
File renamed without changes.
4 changes: 0 additions & 4 deletions pkg/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +0,0 @@
# Ignore everything in this directory
*
# Except this file
!.gitignore
4 changes: 4 additions & 0 deletions pkg/provider/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
terraform
terraform-provider-paperspace
terraform.tfstate
terraform.tfstate.backup
17 changes: 17 additions & 0 deletions pkg/provider/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
build:
go mod tidy
go build -o terraform-provider-paperspace

build-linux:
go mod tidy
GOOS=linux GOARCH=amd64 go build -o terraform-provider-paperspace-linux-amd64

build-darwin:
go mod tidy
GOOS=darwin GOARCH=amd64 go build -o terraform-provider-paperspace-darwin-amd64

build-windows:
go mod tidy
GOOS=windows GOARCH=amd64 go build -o terraform-provider-paperspace-windows-amd64.exe

build-all: build-linux build-darwin build-windows
Loading

0 comments on commit 4bdb63a

Please sign in to comment.