Skip to content

Commit

Permalink
Merge pull request #100 from owncloud/drone-docker
Browse files Browse the repository at this point in the history
Update drone version in CI
  • Loading branch information
C0rby authored Jan 26, 2021
2 parents 09f0124 + 13680d8 commit db33b08
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
32 changes: 16 additions & 16 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def testing(ctx):
},
{
'name': 'generate',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'commands': [
'make generate',
Expand All @@ -60,7 +60,7 @@ def testing(ctx):
},
{
'name': 'vet',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'commands': [
'make vet',
Expand All @@ -74,7 +74,7 @@ def testing(ctx):
},
{
'name': 'staticcheck',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'commands': [
'make staticcheck',
Expand All @@ -88,7 +88,7 @@ def testing(ctx):
},
{
'name': 'lint',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'commands': [
'make lint',
Expand All @@ -102,7 +102,7 @@ def testing(ctx):
},
{
'name': 'build',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'commands': [
'make protobuf build',
Expand All @@ -116,7 +116,7 @@ def testing(ctx):
},
{
'name': 'test',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'commands': [
'make test',
Expand Down Expand Up @@ -175,7 +175,7 @@ def docker(ctx, arch):
},
{
'name': 'generate',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'commands': [
'make generate',
Expand All @@ -189,7 +189,7 @@ def docker(ctx, arch):
},
{
'name': 'build',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'commands': [
'make protobuf build',
Expand Down Expand Up @@ -274,7 +274,7 @@ def UITests(ctx, ocisBranch, ocisCommitId, phoenixBranch, phoenixCommitId):
'steps': [
{
'name': 'build',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'commands': [
'make protobuf build',
Expand All @@ -288,7 +288,7 @@ def UITests(ctx, ocisBranch, ocisCommitId, phoenixBranch, phoenixCommitId):
},
{
'name': 'hello',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'detach': True,
'commands': [
Expand All @@ -305,7 +305,7 @@ def UITests(ctx, ocisBranch, ocisCommitId, phoenixBranch, phoenixCommitId):
},
{
'name': 'build-ocis',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'commands': [
'git clone -b %s --single-branch --no-tags https://github.com/owncloud/ocis /srv/app/ocis' % (ocisBranch),
Expand All @@ -322,7 +322,7 @@ def UITests(ctx, ocisBranch, ocisCommitId, phoenixBranch, phoenixCommitId):
},
{
'name': 'ocis-server',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'detach': True,
'environment' : {
Expand Down Expand Up @@ -510,7 +510,7 @@ def binary(ctx, name):
},
{
'name': 'generate',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'commands': [
'make generate',
Expand All @@ -524,7 +524,7 @@ def binary(ctx, name):
},
{
'name': 'build',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'commands': [
'make release-%s' % (name),
Expand All @@ -538,7 +538,7 @@ def binary(ctx, name):
},
{
'name': 'finish',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'commands': [
'make release-finish',
Expand Down Expand Up @@ -695,7 +695,7 @@ def changelog(ctx):
},
{
'name': 'generate',
'image': 'webhippie/golang:1.13',
'image': 'webhippie/golang:1.15',
'pull': 'always',
'commands': [
'make changelog',
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.linux.arm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM arm32v6/alpine:latest
FROM arm32v6/alpine:3.12

RUN apk update && \
apk upgrade && \
Expand Down

0 comments on commit db33b08

Please sign in to comment.