-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* map aws error codes to mcm error codes * temporary vendor changes * add error code to replace PR #59 * map ResourceExhausted error code for CreateMachine call * remove unused variables from mockclient.go * revert mcm vendor changes * resolved make check errors * address review comments * address review comments part-2
- Loading branch information
1 parent
745e0b7
commit 3b064bf
Showing
18 changed files
with
423 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#!/usr/bin/env bash | ||
# Copyright 2023 SAP SE or an SAP affiliate company | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
set -e | ||
|
||
echo "> Adding Apache License header to all go files where it is not present" | ||
|
||
# Uses the tool https://github.com/google/addlicense | ||
YEAR="$(date +%Y)" | ||
addlicense \ | ||
-c "SAP SE or an SAP affiliate company" \ | ||
-y "${YEAR}" \ | ||
-l apache \ | ||
-ignore ".idea/**" \ | ||
-ignore ".vscode/**" \ | ||
-ignore "vendor/**" \ | ||
-ignore "**/*.md" \ | ||
-ignore "**/*.yaml" \ | ||
-ignore "**/Dockerfile" \ | ||
. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright (c) 2023 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
TOOLS_DIR := hack/tools | ||
TOOLS_BIN_DIR := $(TOOLS_DIR)/bin | ||
GO_ADD_LICENSE := $(TOOLS_BIN_DIR)/addlicense | ||
|
||
# default tool versions | ||
GO_ADD_LICENSE_VERSION ?= latest | ||
|
||
export TOOLS_BIN_DIR := $(TOOLS_BIN_DIR) | ||
export PATH := $(abspath $(TOOLS_BIN_DIR)):$(PATH) | ||
$(info "TOOLS_BIN_DIR from tools.mk", $(TOOLS_BIN_DIR)) | ||
$(info "TOOLS_DIR from tools.mk", $(TOOLS_DIR)) | ||
$(info "PATH from tools.mk", $(PATH)) | ||
|
||
######################################### | ||
# Tools # | ||
######################################### | ||
|
||
$(GO_ADD_LICENSE): | ||
GOBIN=$(abspath $(TOOLS_BIN_DIR)) go install github.com/google/addlicense@$(GO_ADD_LICENSE_VERSION) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.