-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Gfranxman/345 ensure latest version of rsync (#400)
Co-authored-by: Calvin Hendryx-Parker <[email protected]>
- Loading branch information
Showing
3 changed files
with
98 additions
and
38 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 |
---|---|---|
|
@@ -42,14 +42,18 @@ jobs: | |
- name: Install Requirements | ||
shell: bash | ||
run: | | ||
sudo apt-get update && sudo apt-get install --only-upgrade curl | ||
sudo apt-get update && sudo apt-get install --only-upgrade make | ||
sudo apt-get update && sudo apt-get install --only-upgrade python3 | ||
INSTALL_URL="https://raw.githubusercontent.com/sixfeetup/scaf/$GITHUB_REF_NAME/install.sh" | ||
export SCAF_SCRIPT_BRANCH=$GITHUB_REF_NAME | ||
git config --global init.defaultBranch main | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "CI CD install deps" | ||
echo "Downloading install script from $INSTALL_URL" | ||
rm -f $HOME/.local/bin/scaf | ||
curl -sSL $INSTALL_URL | sh | ||
echo "Installing scaf from $INSTALL_URL" | ||
curl -sSL $INSTALL_URL | DEBUG=True bash | ||
- name: Create Project with Scaf | ||
shell: bash | ||
|
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