Skip to content

Commit

Permalink
Adding build steps to yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
merschformann committed Mar 6, 2024
1 parent 2278674 commit 7cbec02
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions knapsack-gosdk/app.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# This manifest holds the information the app needs to run on the Nextmv Cloud.
type: go
runtime: ghcr.io/nextmv-io/runtime/default:latest
pre-push: GOOS=linux GOARCH=arm64 go build -o main
files:
- main
3 changes: 3 additions & 0 deletions nextroute/app.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# This manifest holds the information the app needs to run on the Nextmv Cloud.
type: go
runtime: ghcr.io/nextmv-io/runtime/default:latest
pre-push: GOOS=linux GOARCH=arm64 go build -o main
files:
- main
3 changes: 3 additions & 0 deletions order-fulfillment-gosdk/app.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# This manifest holds the information the app needs to run on the Nextmv Cloud.
type: go
runtime: ghcr.io/nextmv-io/runtime/default:latest
pre-push: GOOS=linux GOARCH=arm64 go build -o main
files:
- main
3 changes: 3 additions & 0 deletions shift-scheduling-gosdk/app.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# This manifest holds the information the app needs to run on the Nextmv Cloud.
type: go
runtime: ghcr.io/nextmv-io/runtime/default:latest
pre-push: GOOS=linux GOARCH=arm64 go build -o main
files:
- main

0 comments on commit 7cbec02

Please sign in to comment.