Skip to content

Commit

Permalink
馃摝 updates HDK for v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
k33g committed Jun 25, 2023
1 parent d17eef8 commit 98afd89
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitpod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN curl -fsSL https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz | tar
# ------------------------------------
# Install TinyGo
# ------------------------------------
ARG TINYGO_VERSION="0.27.0"
ARG TINYGO_VERSION="0.28.1"
RUN wget https://github.com/tinygo-org/tinygo/releases/download/v${TINYGO_VERSION}/tinygo_${TINYGO_VERSION}_amd64.deb
RUN sudo dpkg -i tinygo_${TINYGO_VERSION}_amd64.deb
RUN rm tinygo_${TINYGO_VERSION}_amd64.deb
Expand Down
10 changes: 5 additions & 5 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ tasks:
#TAG: "v0.3.6" # next release
#TAG: "v0.3.7" # next release (this is a pre-release)
#TAG: "v0.3.8"
TAG: "v0.3.9"
#TAG: "v0.4.0"
#TAG: "v0.3.9"
TAG: "v0.4.0"

cmds:
- echo "馃摝 Generating release..."
Expand All @@ -38,13 +38,13 @@ tasks:

remove-tag:
env:
TAG: "v0.3.9"
TAG: "v0.4.0"
cmds:
- git tag -d ${TAG}

build-releases:
env:
TAG: "v0.3.9"
TAG: "v0.4.0"
cmds:
- |
cd capsule-cli
Expand Down Expand Up @@ -77,7 +77,7 @@ tasks:
build-push-docker-image:
vars:
IMAGE_BASE_NAME: "capsule-http"
IMAGE_TAG: "0.3.9"
IMAGE_TAG: "0.4.0"
cmds:
- echo "馃憢 {{.IMAGE_BASE_NAME}}-{{.GOOS}}-{{.GOARCH}}:{{.IMAGE_TAG}}"
- |
Expand Down
2 changes: 1 addition & 1 deletion capsule-http/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ tasks:
GOOS: "linux"
GOARCH: "arm64"
IMAGE_BASE_NAME: "capsule-http"
IMAGE_TAG: "0.3.9"
IMAGE_TAG: "0.4.0"
cmds:
- |
IMAGE_NAME="${IMAGE_BASE_NAME}-${GOOS}-${GOARCH}"
Expand Down
2 changes: 1 addition & 1 deletion capsule-http/functions/hello-world/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM botsgarden/capsule-http-linux-arm64:0.3.9
FROM botsgarden/capsule-http-linux-arm64:0.4.0
COPY hello-world.wasm .
EXPOSE 8080
CMD ["/capsule-http", "--wasm=./hello-world.wasm", "--httpPort=8080"]
Expand Down
1 change: 1 addition & 0 deletions docs/capsule-http-ovh-deploy.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Deploy Capsule FaaS on OVH Cloud

馃毀 this is a work in progress

0 comments on commit 98afd89

Please sign in to comment.