File tree 8 files changed +138
-52
lines changed
8 files changed +138
-52
lines changed Original file line number Diff line number Diff line change 3
3
* -packr.go
4
4
/docker
5
5
/docker.exe
6
+ /build /git_askpass.sh
Original file line number Diff line number Diff line change @@ -75,22 +75,7 @@ test-integration: xbuild
75
75
$(GO ) test -tags=integration ./tests/...
76
76
77
77
publish : bin/porter$(FILE_EXT )
78
- # The following demonstrates how to publish a mixin. As an example, we show how to publish to azure.
79
- # The porter mixins feed generate command is used to build an ATOM feed for sharing mixins once published
80
-
81
- # AZURE_STORAGE_CONNECTION_STRING will be used for auth in the following commands
82
- if [[ "$(PERMALINK)" == "latest" ]]; then \
83
- az storage blob upload-batch -d porter/mixins/$(MIXIN)/$(VERSION) -s $(BINDIR)/$(VERSION); \
84
- az storage blob upload-batch -d porter/mixins/$(MIXIN)/$(PERMALINK) -s $(BINDIR)/$(VERSION); \
85
- else \
86
- mv $(BINDIR)/$(VERSION) $(BINDIR)/$(PERMALINK); \
87
- az storage blob upload-batch -d porter/mixins/$(MIXIN)/$(PERMALINK) -s $(BINDIR)/$(PERMALINK); \
88
- fi
89
-
90
- # Generate the mixin feed
91
- az storage blob download -c porter -n atom.xml -f bin/atom.xml
92
- bin/porter mixins feed generate -d bin/mixins -f bin/atom.xml -t build/atom-template.xml
93
- az storage blob upload -c porter -n atom.xml -f bin/atom.xml
78
+ go run mage.go Publish $(MIXIN ) $(VERSION ) $(PERMALINK )
94
79
95
80
bin/porter$(FILE_EXT ) :
96
81
curl -fsSLo bin/porter$(FILE_EXT ) https://cdn.porter.sh/canary/porter-$(CLIENT_PLATFORM ) -$(CLIENT_ARCH )$(FILE_EXT )
Original file line number Diff line number Diff line change 7
7
branches :
8
8
include :
9
9
- refs/heads/main
10
- - refs/tags/*
10
+ - refs/tags/v *
11
11
12
12
pool :
13
13
vmImage : ' Ubuntu 16.04'
37
37
displayName : ' Integration Test'
38
38
39
39
- script : |
40
- AZURE_STORAGE_CONNECTION_STRING=$(AZURE_STORAGE_CONNECTION_STRING) make publish
40
+ make publish
41
+ env :
42
+ GITHUB_TOKEN : $(GITHUB_TOKEN)
41
43
displayName : ' Publish'
42
44
condition : and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'))
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ module get.porter.sh/mixin/docker
3
3
go 1.13
4
4
5
5
require (
6
- get.porter.sh/porter v0.27.2-0.20200720191056-a355e3031887
6
+ get.porter.sh/porter v0.37.2
7
7
github.com/ghodss/yaml v1.0.0
8
8
github.com/gobuffalo/packr/v2 v2.8.0
9
- github.com/pkg/errors v0.8 .1
10
- github.com/spf13/cobra v0 .0.6
11
- github.com/stretchr/testify v1.5 .1
9
+ github.com/pkg/errors v0.9 .1
10
+ github.com/spf13/cobra v1 .0.0
11
+ github.com/stretchr/testify v1.6 .1
12
12
github.com/xeipuuv/gojsonschema v1.2.0
13
13
gopkg.in/yaml.v2 v2.2.4
14
14
)
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change
1
+ // +build ignore
2
+
3
+ package main
4
+
5
+ import (
6
+ "os"
7
+
8
+ "github.com/magefile/mage/mage"
9
+ )
10
+
11
+ // This file allows someone to run mage commands without mage installed
12
+ // by running `go run mage.go TARGET`.
13
+ // See https://magefile.org/zeroinstall/
14
+ func main () { os .Exit (mage .Main ()) }
Original file line number Diff line number Diff line change
1
+ // +build mage
2
+
3
+ package main
4
+
5
+ import (
6
+ // mage:import
7
+ "get.porter.sh/porter/mage/releases"
8
+ )
9
+
10
+ // We are migrating to mage, but for now keep using make as the main build script interface.
11
+
12
+ // Publish the cross-compiled binaries.
13
+ func Publish (mixin string , version string , permalink string ) {
14
+ releases .PrepareMixinForPublish (mixin , version , permalink )
15
+ releases .PublishMixin (mixin , version , permalink )
16
+ releases .PublishMixinFeed (mixin , version )
17
+ }
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ package docker
3
3
import (
4
4
"bytes"
5
5
"io/ioutil"
6
- "os"
7
6
"path"
8
7
"testing"
9
8
@@ -38,12 +37,12 @@ func TestMixin_Execute(t *testing.T) {
38
37
"docker build -f myfile -t practice /Users/myuser/Documents" },
39
38
}
40
39
41
- defer os .Unsetenv (test .ExpectedCommandEnv )
42
40
for _ , tc := range testcases {
41
+ tc := tc
43
42
t .Run (tc .name , func (t * testing.T ) {
44
43
m := NewTestMixin (t )
45
44
46
- os .Setenv (test .ExpectedCommandEnv , tc .wantCommand )
45
+ m .Setenv (test .ExpectedCommandEnv , tc .wantCommand )
47
46
mixinInputB , err := ioutil .ReadFile (tc .file )
48
47
require .NoError (t , err )
49
48
You can’t perform that action at this time.
0 commit comments