Skip to content

Commit 6261f95

Browse files
authored
Merge pull request #31 from carolynvs/use-mage
Use porter v1
2 parents a525a8f + b6346bb commit 6261f95

14 files changed

+1760
-302
lines changed

Makefile

-108
This file was deleted.

README.md

+23-7
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,18 @@ structure of this project matches closely with existing Porter [Mixins](https://
88

99
1. Create a new repository in GitHub [using this repository as a
1010
template](https://help.github.com/en/articles/creating-a-repository-from-a-template).
11-
1. Go 1.13 or higher is required. You can choose to clone into the GOPATH or not according to preference.
11+
1. Go 1.17 or higher is required. You can choose to clone into the GOPATH or not according to preference.
1212
1. Rename the `cmd/skeletor` and `pkg/skeletor` directories to `cmd/YOURMIXIN` and
1313
`pkg/YOURMIXIN`.
1414
1. Find the text `get.porter.sh/mixin/skeletor` in the repository and change it to
1515
`github.com/YOURNAME/YOURREPO`.
16-
1. Find `PKG = get.porter.sh/mixin/$(MIXIN)` in the Makefile and change it to `PKG = github.com/YOURNAME/YOURREPO`.
1716
1. Find any remaining `skeletor` text in the repository and replace it with `YOURMIXIN`.
1817
1. In `pkg/YOURMIXIN/version.go` replace `YOURNAME` with the name you would like displayed as the mixin
1918
author. This value is displayed as the author of your mixin when `porter mixins list` is run.
2019
1. Replace the `YOURNAME` instances in `pkg/YOURMIXIN/version_test.go` with the name used above.
21-
1. Run `make clean build test-unit xbuild-all test-integration` to try out all the make targets and
20+
1. Run `mage build test` to try out all the make targets and
2221
verify that everything executes without failing. You may need to fix a test string or two.
23-
1. Run `make install` to install your mixin into the Porter home directory. If
22+
1. Run `mage install` to install your mixin into the Porter home directory. If
2423
you don't already have Porter installed, [install](https://porter.sh/install) it first.
2524
1. Now your mixin is installed, you are ready start customizing and iterating on
2625
your mixin!
@@ -46,7 +45,7 @@ of the aws binary and installs it:
4645

4746
https://github.com/getporter/aws-mixin/blob/001c19bfe06d248143353a55f07a42c913579481/pkg/aws/build.go#L7
4847

49-
This is enough to have a working mixin. Run `make build install` and then test
48+
This is enough to have a working mixin. Run `mage build install` and then test
5049
it out with a bundle.
5150

5251
That will get you started but make sure to read the mixin developer
@@ -92,6 +91,23 @@ The project provides an implementation of the `skeletor schema` command that is
9291

9392
The project provides some very basic test skeletons that you can use as a starting point for building tests for your mixin.
9493

95-
### Makefile
94+
### Magefile
9695

97-
The project also includes a Makefile that will can be used to both build and install the mixin. The Makefile also includes a TODO `publish` target that shows how you might publish the mixin and generate an mixin feed for easily sharing your mixin.
96+
The project also includes a [Magefile] that is used to build, test, and publish the mixin.
97+
98+
### Publish
99+
100+
You must set the `GITHUB_TOKEN` environment variable with your personal access token in order to use the default publish target.
101+
102+
Publish uploads cross-compiled binaries of your mixin to a GitHub release.
103+
You must set the `PORTER_RELEASE_REPOSITORY` environment variable to your GitHub repository name, e.g. github.com/YOURNAME/YOURREPO.
104+
There is a placeholder in the Publish magefile target where you can set that value.
105+
106+
Create a tag, for example `git tag v0.1.0`, and push it to your repository.
107+
Run `mage XBuildAll Publish` to build your mixin and upload the binaries to the github release for that tag.
108+
If the commit is not tagged, the release is named "canary".
109+
110+
If you want to generate a mixin feed file (atom.xml), edit the Publish magefile target, uncomment out the rest of the function, and set the `PORTER_PACKAGES_REMOTE` environment variable to a repository where the atom.xml file should be committed.
111+
For example, Porter uses github.com/getporter/packages for publishing our mixin feed.
112+
113+
[Magefile]: https://magefile.org

azure-pipelines.yml

+19-30
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,31 @@
1-
# Go
2-
# Build your Go project.
3-
# Add steps that test, save build artifacts, deploy, and more:
4-
# https://docs.microsoft.com/azure/devops/pipelines/languages/go
1+
# TODO: The publish step relies on the GITHUB_TOKEN environment variable
52

63
trigger:
74
branches:
8-
include:
5+
include: # Only run builds for the main branch, and tagged releases such as v0.1.0
96
- refs/heads/main
10-
- refs/tags/*
7+
- refs/tags/v*
118

129
pool:
13-
vmImage: 'Ubuntu 16.04'
10+
vmImage: 'ubuntu-latest'
1411

1512
steps:
16-
- task: GoTool@0
17-
inputs:
18-
version: '1.13.10'
19-
displayName: 'Install Go'
13+
- task: GoTool@0
14+
inputs:
15+
version: '1.17.6'
16+
displayName: 'Install Go'
2017

21-
- script: |
22-
set -xeuo pipefail
23-
mkdir -p /home/vsts/go/bin/
24-
echo "##vso[task.prependpath]/home/vsts/go/bin/"
25-
displayName: 'Configure Go'
18+
- script: go run mage.go ConfigureAgent
19+
displayName: "Configure Agent"
2620

27-
- script: |
28-
make build test-unit
29-
displayName: 'Unit Test'
21+
- script: mage Test
22+
displayName: 'Test'
3023

31-
- script: |
32-
make xbuild-all
33-
displayName: 'Cross Compile'
24+
- script: mage XBuildAll
25+
displayName: 'Cross Compile'
3426

35-
- script: |
36-
make test-integration
37-
displayName: 'Integration Test'
38-
39-
- script: |
40-
AZURE_STORAGE_CONNECTION_STRING=$(AZURE_STORAGE_CONNECTION_STRING) make publish
41-
displayName: 'Publish'
42-
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'))
27+
- script: mage Publish
28+
env:
29+
GITHUB_TOKEN: $(GITHUB_TOKEN)
30+
displayName: 'Publish'
31+
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'))

cmd/skeletor/schema.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ func buildSchemaCommand(m *skeletor.Mixin) *cobra.Command {
99
cmd := &cobra.Command{
1010
Use: "schema",
1111
Short: "Print the json schema for the mixin",
12-
RunE: func(cmd *cobra.Command, args []string) error {
13-
return m.PrintSchema()
12+
Run: func(cmd *cobra.Command, args []string) {
13+
m.PrintSchema()
1414
},
1515
}
1616
return cmd

go.mod

+110-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,118 @@
11
module get.porter.sh/mixin/skeletor
22

3-
go 1.13
3+
go 1.17
4+
5+
replace (
6+
// These are replace directives copied from porter
7+
// When you use a newer version of Porter, if you run into trouble with go mod tidy
8+
// Copy any additional replace directives from Porter's go.mod file
9+
// They must match the replaces used by porter everything to compile
10+
github.com/hashicorp/go-plugin => github.com/carolynvs/go-plugin v1.0.1-acceptstdin
11+
github.com/spf13/viper => github.com/getporter/viper v1.7.1-porter.2.0.20210514172839-3ea827168363
12+
)
413

514
require (
6-
get.porter.sh/porter v0.29.1
15+
get.porter.sh/porter v1.0.0-alpha.7
716
github.com/ghodss/yaml v1.0.0
8-
github.com/gobuffalo/packr/v2 v2.8.0
9-
github.com/spf13/cobra v0.0.6
10-
github.com/stretchr/testify v1.5.1
17+
github.com/spf13/cobra v1.1.3
18+
github.com/stretchr/testify v1.7.0
1119
github.com/xeipuuv/gojsonschema v1.2.0
12-
gopkg.in/yaml.v2 v2.2.4
20+
gopkg.in/yaml.v2 v2.4.0
1321
)
1422

15-
replace github.com/hashicorp/go-plugin => github.com/carolynvs/go-plugin v1.0.1-acceptstdin
23+
require (
24+
github.com/BurntSushi/toml v0.3.1 // indirect
25+
github.com/Masterminds/semver v1.5.0 // indirect
26+
github.com/Masterminds/semver/v3 v3.1.1 // indirect
27+
github.com/PaesslerAG/gval v1.0.0 // indirect
28+
github.com/PaesslerAG/jsonpath v0.1.1 // indirect
29+
github.com/PuerkitoBio/goquery v1.5.0 // indirect
30+
github.com/andybalholm/brotli v1.0.0 // indirect
31+
github.com/andybalholm/cascadia v1.0.0 // indirect
32+
github.com/carolynvs/aferox v0.3.0 // indirect
33+
github.com/carolynvs/magex v0.6.0 // indirect
34+
github.com/cbroglie/mustache v1.0.1 // indirect
35+
github.com/cenkalti/backoff/v4 v4.1.1 // indirect
36+
github.com/cnabio/cnab-go v0.21.0 // indirect
37+
github.com/cyberphone/json-canonicalization v0.0.0-20210303052042-6bc126869bf4 // indirect
38+
github.com/davecgh/go-spew v1.1.1 // indirect
39+
github.com/dsnet/compress v0.0.1 // indirect
40+
github.com/fatih/color v1.9.0 // indirect
41+
github.com/fsnotify/fsnotify v1.4.9 // indirect
42+
github.com/globalsign/mgo v0.0.0-20181015135952-eeefdecb41b8 // indirect
43+
github.com/gobuffalo/logger v1.0.4 // indirect
44+
github.com/gobuffalo/packd v1.0.0 // indirect
45+
github.com/gobuffalo/packr/v2 v2.8.1 // indirect
46+
github.com/goccy/go-yaml v1.8.1 // indirect
47+
github.com/golang/protobuf v1.5.2 // indirect
48+
github.com/golang/snappy v0.0.4-0.20210608040537-544b4180ac70 // indirect
49+
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
50+
github.com/hashicorp/errwrap v1.1.0 // indirect
51+
github.com/hashicorp/go-multierror v1.1.1 // indirect
52+
github.com/hashicorp/hcl v1.0.0 // indirect
53+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
54+
github.com/jeremywohl/flatten v1.0.1 // indirect
55+
github.com/karrick/godirwalk v1.16.1 // indirect
56+
github.com/klauspost/compress v1.12.3 // indirect
57+
github.com/klauspost/pgzip v1.2.4 // indirect
58+
github.com/magefile/mage v1.11.0 // indirect
59+
github.com/magiconair/properties v1.8.1 // indirect
60+
github.com/markbates/errx v1.1.0 // indirect
61+
github.com/markbates/oncer v1.0.0 // indirect
62+
github.com/markbates/safe v1.0.1 // indirect
63+
github.com/mattn/go-colorable v0.1.7 // indirect
64+
github.com/mattn/go-isatty v0.0.12 // indirect
65+
github.com/mattn/go-runewidth v0.0.7 // indirect
66+
github.com/mholt/archiver/v3 v3.5.0 // indirect
67+
github.com/mikefarah/yq/v3 v3.0.0-20201020025845-ccb718cd0f59 // indirect
68+
github.com/mitchellh/mapstructure v1.3.3 // indirect
69+
github.com/mmcdole/gofeed v1.0.0-beta2 // indirect
70+
github.com/mmcdole/goxpp v0.0.0-20181012175147-0068e33feabf // indirect
71+
github.com/nwaples/rardecode v1.1.0 // indirect
72+
github.com/oklog/ulid v1.3.1 // indirect
73+
github.com/olekukonko/tablewriter v0.0.4 // indirect
74+
github.com/pelletier/go-toml v1.9.1 // indirect
75+
github.com/pierrec/lz4/v4 v4.0.3 // indirect
76+
github.com/pkg/errors v0.9.1 // indirect
77+
github.com/pmezard/go-difflib v1.0.0 // indirect
78+
github.com/qri-io/jsonpointer v0.1.1 // indirect
79+
github.com/qri-io/jsonschema v0.2.2-0.20210723092138-2eb22ee8115f // indirect
80+
github.com/sirupsen/logrus v1.8.1 // indirect
81+
github.com/spf13/afero v1.5.1 // indirect
82+
github.com/spf13/cast v1.3.1 // indirect
83+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
84+
github.com/spf13/pflag v1.0.5 // indirect
85+
github.com/spf13/viper v1.7.0 // indirect
86+
github.com/subosito/gotenv v1.2.0 // indirect
87+
github.com/ulikunitz/xz v0.5.7 // indirect
88+
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
89+
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
90+
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
91+
go.opentelemetry.io/otel v1.1.0 // indirect
92+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.1.0 // indirect
93+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.1.0 // indirect
94+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.1.0 // indirect
95+
go.opentelemetry.io/otel/sdk v1.1.0 // indirect
96+
go.opentelemetry.io/otel/trace v1.1.0 // indirect
97+
go.opentelemetry.io/proto/otlp v0.9.0 // indirect
98+
go.uber.org/atomic v1.5.0 // indirect
99+
go.uber.org/multierr v1.3.0 // indirect
100+
go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee // indirect
101+
go.uber.org/zap v1.13.0 // indirect
102+
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
103+
golang.org/x/mod v0.3.0 // indirect
104+
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
105+
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
106+
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
107+
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
108+
golang.org/x/text v0.3.5 // indirect
109+
golang.org/x/tools v0.0.0-20210106214847-113979e3529a // indirect
110+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
111+
google.golang.org/genproto v0.0.0-20201110150050-8816d57aaa9a // indirect
112+
google.golang.org/grpc v1.41.0 // indirect
113+
google.golang.org/protobuf v1.27.1 // indirect
114+
gopkg.in/ini.v1 v1.56.0 // indirect
115+
gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 // indirect
116+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
117+
honnef.co/go/tools v0.0.1-2020.1.5 // indirect
118+
)

0 commit comments

Comments
 (0)