This repository has been archived by the owner on Jun 19, 2023. It is now read-only.
forked from arevak/role-asdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd41c14
commit 9077d14
Showing
6 changed files
with
158 additions
and
39 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,25 @@ | ||
#!/bin/bash | ||
|
||
# .github/scripts/ansible_cache.sh | ||
# Creates symlinks for attaching an external cache folder for Ansible. | ||
# Separate folders for Roles, and Collections are maintained. | ||
|
||
# 1: The absolute path of the mount point of the external cache folder. | ||
# 2: The absolute path of the usage point of the cache on the system. | ||
|
||
# CI only script | ||
|
||
set -eo pipefail | ||
|
||
main () { | ||
|
||
MOUNT_FOLDER="${1}" | ||
USAGE_FOLDER="${2}" | ||
|
||
mkdir -p "${MOUNT_FOLDER}" | ||
|
||
ln -sf "${MOUNT_FOLDER}" "${USAGE_FOLDER}" | ||
|
||
} | ||
|
||
main "$@" |
This file was deleted.
Oops, something went wrong.
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,16 @@ | ||
#!/bin/bash | ||
|
||
# .github/scripts/poetry.sh | ||
# Centralized management of poetry installs. | ||
|
||
# CI only script | ||
|
||
set -eo pipefail | ||
|
||
main () { | ||
|
||
pip3 install poetry | ||
|
||
} | ||
|
||
main "$@" |
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