-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Gfranxman/345 ensure latest version of rsync #400
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
dc7078b
feat(setup): replace shell interpreter with bash, add version checks
gfranxman ffddc43
feat(install.sh): modify error handling mechanism
gfranxman b1e53c3
feat(install.sh): upgrade installation instructions for dependencies
gfranxman bdd21dd
feat: add essential packages in setup project workflow
gfranxman d4b722b
feat(install.sh): adjust minimum version requirements for dependencies
gfranxman fc402ec
feat: modify setup-project script for debugging
gfranxman 75fcb8d
feat(setup-project.yaml): replace direct script execution with curl
gfranxman 75c3cf1
feat(install.sh): lower bash version requirement
gfranxman c67eeae
feat(install.sh): add emoji to success message
gfranxman fcae8ea
feat: Update installation script for better version checking
gfranxman cd9730d
fix: adjust curl version requirement in install.sh
gfranxman f9c402f
Merge branch 'main' into gfranxman/345-ensure-latest-version-of-rsync
gfranxman 130424d
Merge branch 'main' into gfranxman/345-ensure-latest-version-of-rsync
calvinhp 0e45517
fix: improve install.sh script reliability and readability
calvinhp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GitHub actions are tripping up on this change since
scaf
is not being installed.