Updated tools verification commands #20
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
name: Validate macsetup.sh | |
on: [push, pull_request] | |
jobs: | |
validate-macsetup: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest] | |
arch: [x64, arm64] | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Run macsetup.sh | |
run: | | |
chmod +x macsetup.sh | |
./macsetup.sh --status --install | |
- name: Set up Homebrew | |
run: | | |
if ! command -v brew &> /dev/null; then | |
echo "Installing Homebrew..." | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
else | |
echo "Homebrew is already installed." | |
fi | |
- name: Install jq | |
run: | | |
if ! command -v jq &> /dev/null; then | |
echo "Installing jq..." | |
brew install jq | |
else | |
echo "jq is already installed." | |
fi | |
- name: Check if tools.json exists | |
run: | | |
macsetup_dir="$HOME/.macsetup" | |
if [ ! -f "$macsetup_dir/tools.json" ]; then | |
echo "tools.json not found in $macsetup_dir" | |
exit 1 | |
else | |
echo "tools.json found." | |
fi | |
- name: Validate installation | |
run: | | |
# Read validation commands from config/tools.json and run them | |
macsetup_dir="$HOME/.macsetup" | |
if [ ! -d "$macsetup_dir" ]; then | |
echo "$macsetup_dir does not exist." | |
exit 1 | |
fi | |
if [ ! -f "$macsetup_dir/tools.json" ]; then | |
echo "tools.json not found in $macsetup_dir" | |
exit 1 | |
fi | |
echo "folder and file exists" | |
cat $macsetup_dir/tools.json | |
tools=$(cat $macsetup_dir/tools.json | jq -c '.[]') | |
for tool in $tools; do | |
name=$(echo "$tool" | jq -r '.name') | |
verify_command=$(echo "$tool" | jq -r '.verify_command') | |
if [ -n "$verify_command" ]; then | |
echo "Validating $name..." | |
eval "$verify_command" | |
if [ $? -eq 0 ]; then | |
echo -e "${GREEN}$name validation successful.${NC}" | |
else | |
echo -e "${RED}$name validation failed.${NC}" | |
fi | |
else | |
echo "No validation command provided for $name." | |
fi | |
done |