Skip to content

Commit 5103eb5

Browse files
authored
Merge pull request #31 from carolynvs/gh-releases
Publish to GH
2 parents 4f493b7 + 70a4d40 commit 5103eb5

8 files changed

+138
-52
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ bin
33
*-packr.go
44
/docker
55
/docker.exe
6+
/build/git_askpass.sh

Makefile

+1-16
Original file line numberDiff line numberDiff line change
@@ -75,22 +75,7 @@ test-integration: xbuild
7575
$(GO) test -tags=integration ./tests/...
7676

7777
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)
9479

9580
bin/porter$(FILE_EXT):
9681
curl -fsSLo bin/porter$(FILE_EXT) https://cdn.porter.sh/canary/porter-$(CLIENT_PLATFORM)-$(CLIENT_ARCH)$(FILE_EXT)

azure-pipelines.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ trigger:
77
branches:
88
include:
99
- refs/heads/main
10-
- refs/tags/*
10+
- refs/tags/v*
1111

1212
pool:
1313
vmImage: 'Ubuntu 16.04'
@@ -37,6 +37,8 @@ steps:
3737
displayName: 'Integration Test'
3838

3939
- script: |
40-
AZURE_STORAGE_CONNECTION_STRING=$(AZURE_STORAGE_CONNECTION_STRING) make publish
40+
make publish
41+
env:
42+
GITHUB_TOKEN: $(GITHUB_TOKEN)
4143
displayName: 'Publish'
4244
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'))

go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ module get.porter.sh/mixin/docker
33
go 1.13
44

55
require (
6-
get.porter.sh/porter v0.27.2-0.20200720191056-a355e3031887
6+
get.porter.sh/porter v0.37.2
77
github.com/ghodss/yaml v1.0.0
88
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
1212
github.com/xeipuuv/gojsonschema v1.2.0
1313
gopkg.in/yaml.v2 v2.2.4
1414
)

go.sum

+95-27
Large diffs are not rendered by default.

mage.go

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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()) }

magefile.go

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
}

pkg/docker/execute_test.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package docker
33
import (
44
"bytes"
55
"io/ioutil"
6-
"os"
76
"path"
87
"testing"
98

@@ -38,12 +37,12 @@ func TestMixin_Execute(t *testing.T) {
3837
"docker build -f myfile -t practice /Users/myuser/Documents"},
3938
}
4039

41-
defer os.Unsetenv(test.ExpectedCommandEnv)
4240
for _, tc := range testcases {
41+
tc := tc
4342
t.Run(tc.name, func(t *testing.T) {
4443
m := NewTestMixin(t)
4544

46-
os.Setenv(test.ExpectedCommandEnv, tc.wantCommand)
45+
m.Setenv(test.ExpectedCommandEnv, tc.wantCommand)
4746
mixinInputB, err := ioutil.ReadFile(tc.file)
4847
require.NoError(t, err)
4948

0 commit comments

Comments
 (0)