Skip to content

https://github.com/aws/aws-lambda-go/issues/340 fixed by adding CGO e… #66

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/add-budget-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Add Budget
- name: Add budget
run: cd budget/add/; GOOS=linux go build cmd/main.go; zip addBudget.zip main; ls;
run: cd budget/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addBudget.zip main; ls;

- name: Add Budget Test
run: cd budget/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-category-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Add Category
- name: Add category
run: cd category/add/; GOOS=linux go build cmd/main.go; zip addCategory.zip main; ls;
run: cd category/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addCategory.zip main; ls;

- name: Add Category Test
run: cd category/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-category-link-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Add CategoryLinkTrigger
- name: Add dynamodb-stream/category-link-trigger
run: cd dynamodb-stream/category-link-trigger/add/; GOOS=linux go build cmd/main.go; zip addCategoryLinkTrigger.zip main; ls;
run: cd dynamodb-stream/category-link-trigger/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addCategoryLinkTrigger.zip main; ls;

- name: Add CategoryLinkTrigger Test
run: cd dynamodb-stream/category-link-trigger/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-category-rules-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Add CategoryRules
- name: Add rules
run: cd category-rules/add/; GOOS=linux go build cmd/main.go; zip addCategoryRules.zip main; ls;
run: cd category-rules/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addCategoryRules.zip main; ls;

- name: Add CategoryRules Test
run: cd category-rules/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-debt-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Add Debt
- name: Add debt
run: cd debt/add/; GOOS=linux go build cmd/main.go; zip addDebt.zip main; ls;
run: cd debt/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addDebt.zip main; ls;

- name: Add Debt Test
run: cd debt/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-debt-link-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Add DebtLinkTrigger
- name: Add dynamodb-stream/debt-link-trigger
run: cd dynamodb-stream/debt-link-trigger/add/; GOOS=linux go build cmd/main.go; zip addDebtLinkTrigger.zip main; ls;
run: cd dynamodb-stream/debt-link-trigger/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addDebtLinkTrigger.zip main; ls;

- name: Add DebtLinkTrigger Test
run: cd dynamodb-stream/debt-link-trigger/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-debt-rules-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Add DebtRules
- name: Add Debt rules
run: cd debt-rules/add/; GOOS=linux go build cmd/main.go; zip addDebtRules.zip main; ls;
run: cd debt-rules/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addDebtRules.zip main; ls;

- name: Add DebtRules Test
run: cd debt-rules/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-goal-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Add Goal
- name: Add goal
run: cd goals/add/; GOOS=linux go build cmd/main.go; zip addGoal.zip main; ls;
run: cd goals/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addGoal.zip main; ls;

- name: Add Goal Test
run: cd goals/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-goal-link-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Add GoalLinkTrigger
- name: Add dynamodb-stream/goal-link-trigger
run: cd dynamodb-stream/goal-link-trigger/add/; GOOS=linux go build cmd/main.go; zip addGoalLinkTrigger.zip main; ls;
run: cd dynamodb-stream/goal-link-trigger/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addGoalLinkTrigger.zip main; ls;

- name: Add GoalLinkTrigger Test
run: cd dynamodb-stream/goal-link-trigger/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-goal-rules-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Add GoalRules
- name: Add Goal rules
run: cd goal-rules/add/; GOOS=linux go build cmd/main.go; zip addGoalRules.zip main; ls;
run: cd goal-rules/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addGoalRules.zip main; ls;

- name: Add GoalRules Test
run: cd goal-rules/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-investment-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Add Investment
- name: Add Investment
run: cd investment/add/; GOOS=linux go build cmd/main.go; zip addInvestment.zip main; ls;
run: cd investment/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addInvestment.zip main; ls;

- name: Add Investment Test
run: cd investment/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-investment-link-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Add InvestmentLinkTrigger
- name: Add dynamodb-stream/investment-link-trigger
run: cd dynamodb-stream/investment-link-trigger/add/; GOOS=linux go build cmd/main.go; zip addInvestmentLinkTrigger.zip main; ls;
run: cd dynamodb-stream/investment-link-trigger/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addInvestmentLinkTrigger.zip main; ls;

- name: Add InvestmentLinkTrigger Test
run: cd dynamodb-stream/investment-link-trigger/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-investment-rules-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Add InvestmentRules
- name: Add rules
run: cd investment-rules/add/; GOOS=linux go build cmd/main.go; zip addInvestmentRules.zip main; ls;
run: cd investment-rules/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addInvestmentRules.zip main; ls;

- name: Add InvestmentRules Test
run: cd investment-rules/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-notifications-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Add Notification
- name: Add notifications
run: cd notifications/add/; GOOS=linux go build cmd/main.go; zip addNotification.zip main; ls;
run: cd notifications/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addNotification.zip main; ls;

- name: Add Notification Test
run: cd notifications/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-tags-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Add Tag
- name: Add tags
run: cd tags/add/; GOOS=linux go build cmd/main.go; zip addTag.zip main; ls;
run: cd tags/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addTag.zip main; ls;

- name: Add Tag Test
run: cd tags/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-transaction-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Add Transaction
- name: Add transaction
run: cd transactions/add/; GOOS=linux go build cmd/main.go; zip addTransaction.zip main; ls;
run: cd transactions/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addTransaction.zip main; ls;

- name: Add Transaction Test
run: cd transactions/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/add-wallet-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Add Wallet
- name: Add wallet
run: cd wallet/add/; GOOS=linux go build cmd/main.go; zip addWallet.zip main; ls;
run: cd wallet/add/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip addWallet.zip main; ls;

- name: Add Wallet Test
run: cd wallet/add/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/batch-get-category-items.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Get Category
- name: Get category
run: cd category/batch-get/; GOOS=linux go build cmd/main.go; zip batchGetCategory.zip main; ls;
run: cd category/batch-get/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip batchGetCategory.zip main; ls;

- name: Get Category Test
run: cd category/batch-get/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delete-category-link-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Remove CategoryLinkTrigger
- name: Remove dynamodb-stream/category-link-trigger
run: cd dynamodb-stream/category-link-trigger/delete/; GOOS=linux go build cmd/main.go; zip deleteCategoryLinkTrigger.zip main; ls;
run: cd dynamodb-stream/category-link-trigger/delete/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip deleteCategoryLinkTrigger.zip main; ls;

- name: Remove CategoryLinkTrigger Test
run: cd dynamodb-stream/category-link-trigger/delete/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delete-debt-link-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Remove DebtLinkTrigger
- name: Remove dynamodb-stream/debt-link-trigger
run: cd dynamodb-stream/debt-link-trigger/delete/; GOOS=linux go build cmd/main.go; zip deleteDebtLinkTrigger.zip main; ls;
run: cd dynamodb-stream/debt-link-trigger/delete/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip deleteDebtLinkTrigger.zip main; ls;

- name: Remove DebtLinkTrigger Test
run: cd dynamodb-stream/debt-link-trigger/delete/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delete-goal-link-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Remove GoalLinkTrigger
- name: Remove dynamodb-stream/goal-link-trigger
run: cd dynamodb-stream/goal-link-trigger/delete/; GOOS=linux go build cmd/main.go; zip deleteGoalLinkTrigger.zip main; ls;
run: cd dynamodb-stream/goal-link-trigger/delete/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip deleteGoalLinkTrigger.zip main; ls;

- name: Remove GoalLinkTrigger Test
run: cd dynamodb-stream/goal-link-trigger/delete/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delete-investment-link-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# Remove InvestmentLinkTrigger
- name: Remove dynamodb-stream/investment-link-trigger
run: cd dynamodb-stream/investment-link-trigger/delete/; GOOS=linux go build cmd/main.go; zip deleteInvestmentLinkTrigger.zip main; ls;
run: cd dynamodb-stream/investment-link-trigger/delete/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip deleteInvestmentLinkTrigger.zip main; ls;

- name: Remove InvestmentLinkTrigger Test
run: cd dynamodb-stream/investment-link-trigger/delete/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-budget-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Get Budget
- name: Get budget
run: cd budget/get/; GOOS=linux go build cmd/main.go; zip getBudget.zip main; ls;
run: cd budget/get/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip getBudget.zip main; ls;

- name: Get Budget Test
run: cd budget/get/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-category-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Get Category
- name: Get category
run: cd category/get/; GOOS=linux go build cmd/main.go; zip getCategory.zip main; ls;
run: cd category/get/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip getCategory.zip main; ls;

- name: Get Category Test
run: cd category/get/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-category-rules-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Get CategoryRules
- name: Get category-rules
run: cd category-rules/get/; GOOS=linux go build cmd/main.go; zip getCategoryRules.zip main; ls;
run: cd category-rules/get/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip getCategoryRules.zip main; ls;

- name: Get CategoryRules Test
run: cd category-rules/get/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-debt-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Get Debt
- name: Get debt
run: cd debt/get/; GOOS=linux go build cmd/main.go; zip getDebt.zip main; ls;
run: cd debt/get/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip getDebt.zip main; ls;

- name: Get Debt Test
run: cd debt/get/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-debt-rules-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Get DebtRules
- name: Get debt-rules
run: cd debt-rules/get/; GOOS=linux go build cmd/main.go; zip getDebtRules.zip main; ls;
run: cd debt-rules/get/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip getDebtRules.zip main; ls;

- name: Get DebtRules Test
run: cd debt-rules/get/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-goal-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Get Goal
- name: Get goal
run: cd goals/get/; GOOS=linux go build cmd/main.go; zip getGoal.zip main; ls;
run: cd goals/get/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip getGoal.zip main; ls;

- name: Get Goal Test
run: cd goals/get/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-goal-rules-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Get GoalRules
- name: Get goal-rules
run: cd goal-rules/get/; GOOS=linux go build cmd/main.go; zip getGoalRules.zip main; ls;
run: cd goal-rules/get/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip getGoalRules.zip main; ls;

- name: Get GoalRules Test
run: cd goal-rules/get/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-investment-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Get Investment
- name: Get investment
run: cd investment/get/; GOOS=linux go build cmd/main.go; zip getInvestment.zip main; ls;
run: cd investment/get/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip getInvestment.zip main; ls;

- name: Get Investment Test
run: cd investment/get/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-investment-rules-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Get InvestmentRules
- name: Get investment-rules
run: cd investment-rules/get/; GOOS=linux go build cmd/main.go; zip getInvestmentRules.zip main; ls;
run: cd investment-rules/get/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip getInvestmentRules.zip main; ls;

- name: Get InvestmentRules Test
run: cd investment-rules/get/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-notifications-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Get Notifications
- name: Get notification
run: cd notifications/get/; GOOS=linux go build cmd/main.go; zip getNotification.zip main; ls;
run: cd notifications/get/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip getNotification.zip main; ls;

- name: Get Notification Test
run: cd notifications/get/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-tags-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Get Tag
- name: Get tags
run: cd tags/get/; GOOS=linux go build cmd/main.go; zip getTag.zip main; ls;
run: cd tags/get/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip getTag.zip main; ls;

- name: Get Tag Test
run: cd tags/get/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-transaction-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Get Transaction
- name: Get transaction
run: cd transactions/get/; GOOS=linux go build cmd/main.go; zip getTransaction.zip main; ls;
run: cd transactions/get/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip getTransaction.zip main; ls;

- name: Get Transaction Test
run: cd transactions/get/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-wallet-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Get Wallet
- name: Get wallet
run: cd wallet/get/; GOOS=linux go build cmd/main.go; zip getWallet.zip main; ls;
run: cd wallet/get/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip getWallet.zip main; ls;

- name: Get Wallet Test
run: cd wallet/get/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/overview-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Overview
- name: Get overview
run: cd overview/; GOOS=linux go build cmd/main.go; zip overview.zip main; ls;
run: cd overview/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip overview.zip main; ls;

- name: Overview Test
run: cd overview/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/patch-budget-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Patch Budget
- name: Patch budget
run: cd budget/update/; GOOS=linux go build cmd/main.go; zip patchBudget.zip main; ls;
run: cd budget/update/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip patchBudget.zip main; ls;

- name: Patch Budget Test
run: cd budget/update/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/patch-category-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Patch Category
- name: Patch category
run: cd category/update/; GOOS=linux go build cmd/main.go; zip patchCategory.zip main; ls;
run: cd category/update/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip patchCategory.zip main; ls;

- name: Patch Category Test
run: cd category/update/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/patch-debt-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Patch Debt
- name: Patch debt
run: cd debt/update/; GOOS=linux go build cmd/main.go; zip patchDebt.zip main; ls;
run: cd debt/update/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip patchDebt.zip main; ls;

- name: Patch Debt Test
run: cd debt/update/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/patch-goal-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Patch Goal
- name: Patch goal
run: cd goals/update/; GOOS=linux go build cmd/main.go; zip patchGoal.zip main; ls;
run: cd goals/update/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip patchGoal.zip main; ls;

- name: Patch Goal Test
run: cd goals/update/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/patch-investment-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Patch Investment
- name: Patch investment
run: cd investment/update/; GOOS=linux go build cmd/main.go; zip patchInvestment.zip main; ls;
run: cd investment/update/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip patchInvestment.zip main; ls;

- name: Patch Investment Test
run: cd investment/update/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/patch-tags-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Patch Tag
- name: Patch tags
run: cd tags/update/; GOOS=linux go build cmd/main.go; zip patchTag.zip main; ls;
run: cd tags/update/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip patchTag.zip main; ls;

- name: Patch Tag Test
run: cd tags/update/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/patch-transaction-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Patch Transaction
- name: Patch transaction
run: cd transactions/update/; GOOS=linux go build cmd/main.go; zip patchTransaction.zip main; ls;
run: cd transactions/update/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip patchTransaction.zip main; ls;

- name: Patch Transaction Test
run: cd transactions/update/; go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/patch-wallet-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Patch Wallet
- name: Patch wallet
run: cd wallet/update/; GOOS=linux go build cmd/main.go; zip patchWallet.zip main; ls;
run: cd wallet/update/; GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build cmd/main.go; zip patchWallet.zip main; ls;

- name: Patch Wallet Test
run: cd wallet/update/; go test -v ./...
Expand Down
Loading