-
Notifications
You must be signed in to change notification settings - Fork 941
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(framework) Refactor docker build matrix
Signed-off-by: Robert Steiner <[email protected]>
- Loading branch information
1 parent
fc6962d
commit 32e117a
Showing
5 changed files
with
116 additions
and
49 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: "format-docker-build-args" | ||
description: "Format the build args to work with the wretry.action" | ||
inputs: | ||
build-args: | ||
description: "List of build arguments." | ||
outputs: | ||
build-args: | ||
description: "Build args formatted to work with the wretry.action" | ||
value: ${{ steps.build-args.outputs.build-args }} | ||
runs: | ||
using: "composite" | ||
steps: | ||
- id: build-args | ||
shell: python | ||
run: | | ||
import os | ||
# Adds two spaces to the line breaks to ensure proper indentation | ||
# when passing the multi-line string to the wretry.action. | ||
# Without it, the multi-line string is passed like this: | ||
# | ||
# build-args: | | ||
# ARG1= | ||
# ARG2= | ||
# ARG3= | ||
# | ||
# This causes the Docker action to interpret ARG2 and ARG3 as keys instead | ||
# of values of the multi-line string. | ||
build_args = '''${{ inputs.build-args }}'''.replace("\n", "\n ") | ||
with open(os.environ['GITHUB_OUTPUT'], 'a') as fh: | ||
print("build-args<<EOF", file=fh) | ||
print(build_args, file=fh) | ||
print("EOF", file=fh) |
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