Skip to content
Draft
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
3 changes: 2 additions & 1 deletion provider-ci/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
SHELL := /bin/bash -o pipefail
SHELL := /bin/bash
.SHELLFLAGS := -eo pipefail -c
NAME ?= all
PROVIDERS := $(patsubst %/, %, $(wildcard providers/*/))
PROVIDER_REPOS := $(addsuffix /repo, $(PROVIDERS))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Provider cross-platform build & packaging

SHELL := /bin/bash -o pipefail
SHELL := /bin/bash
.SHELLFLAGS := -eo pipefail -c

# Set these variables to enable signing of the windows binary with Azure Trusted Signing.
AZURE_SIGNING_CLIENT_ID ?=
Expand Down
3 changes: 2 additions & 1 deletion provider-ci/test-providers/aws/scripts/crossbuild.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Provider cross-platform build & packaging

SHELL := /bin/bash -o pipefail
SHELL := /bin/bash
.SHELLFLAGS := -eo pipefail -c

# Set these variables to enable signing of the windows binary with Azure Trusted Signing.
AZURE_SIGNING_CLIENT_ID ?=
Expand Down
3 changes: 2 additions & 1 deletion provider-ci/test-providers/cloudflare/scripts/crossbuild.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Provider cross-platform build & packaging

SHELL := /bin/bash -o pipefail
SHELL := /bin/bash
.SHELLFLAGS := -eo pipefail -c

# Set these variables to enable signing of the windows binary with Azure Trusted Signing.
AZURE_SIGNING_CLIENT_ID ?=
Expand Down
3 changes: 2 additions & 1 deletion provider-ci/test-providers/docker/scripts/crossbuild.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Provider cross-platform build & packaging

SHELL := /bin/bash -o pipefail
SHELL := /bin/bash
.SHELLFLAGS := -eo pipefail -c

# Set these variables to enable signing of the windows binary with Azure Trusted Signing.
AZURE_SIGNING_CLIENT_ID ?=
Expand Down
3 changes: 2 additions & 1 deletion provider-ci/test-providers/eks/scripts/crossbuild.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Provider cross-platform build & packaging

SHELL := /bin/bash -o pipefail
SHELL := /bin/bash
.SHELLFLAGS := -eo pipefail -c

# Set these variables to enable signing of the windows binary with Azure Trusted Signing.
AZURE_SIGNING_CLIENT_ID ?=
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Provider cross-platform build & packaging

SHELL := /bin/bash -o pipefail
SHELL := /bin/bash
.SHELLFLAGS := -eo pipefail -c

# Set these variables to enable signing of the windows binary with Azure Trusted Signing.
AZURE_SIGNING_CLIENT_ID ?=
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Provider cross-platform build & packaging

SHELL := /bin/bash -o pipefail
SHELL := /bin/bash
.SHELLFLAGS := -eo pipefail -c

# Set these variables to enable signing of the windows binary with Azure Trusted Signing.
AZURE_SIGNING_CLIENT_ID ?=
Expand Down
3 changes: 2 additions & 1 deletion provider-ci/test-providers/xyz/scripts/crossbuild.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Provider cross-platform build & packaging

SHELL := /bin/bash -o pipefail
SHELL := /bin/bash
.SHELLFLAGS := -eo pipefail -c

# Set these variables to enable signing of the windows binary with Azure Trusted Signing.
AZURE_SIGNING_CLIENT_ID ?=
Expand Down
Loading