Skip to content

Commit

Permalink
Single headless emulator - 42
Browse files Browse the repository at this point in the history
  • Loading branch information
kaanx022 committed May 12, 2024
1 parent 201bfdd commit f2fce26
Showing 1 changed file with 25 additions and 11 deletions.
36 changes: 25 additions & 11 deletions main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,32 @@ echo "==========================================================================
echo "Directory Contents ./ (/home/runner/work/kaan/kaan)"
ls -la
echo "============================================================================"
echo "Directory Contents ../ (/home/runner/work/kaan/"
ls -la ../
echo "============================================================================"
echo "Directory Contents ../../ (/home/runner/work/)"
ls -la ../../
echo "============================================================================"
echo "Directory Contents ../../../ (/home/runner/)"
ls -la ../../../
echo "============================================================================"
echo "Directory Contents ../../../../ (/home/)"
ls -la ../../../../
echo "============================================================================"


# wget a release file called "maestro_kaan.zip" from link github.com/sdfgsdfgd/maestro_kaan/releases/download/maestro_kaan/maestro_kaan.zip
# 1. Downloading the zip file for Maestro Kaan release
echo "Downloading maestro_kaan.zip"
wget https://github.com/sdfgsdfgd/maestro_kaan/releases/download/maestro_kaan/maestro_kaan.zip

# 2. Downloading the YOLO yaml configuration for Maestro
echo "Downloading yolo.yaml"
wget https://github.com/sdfgsdfgd/maestro_kaan/releases/download/maestro_kaan/yolo.yaml -O yolo1.yaml
cp yolo1.yaml yolo2.yaml
cp yolo1.yaml yolo3.yaml
cp yolo1.yaml yolo4.yaml
cp yolo1.yaml yolo5.yaml

# 3. Unzipping the Maestro Kaan zip file and then removing the zip file
echo "Unzipping maestro_kaan.zip"
unzip maestro_kaan.zip
echo "Removing maestro_kaan.zip"
rm maestro_kaan.zip

# 4. Displaying the contents of the directory again
echo "Directory Contents after unzipping:"
ls -la

# 5. Executing the Maestro executable
echo "Running the Maestro executable:"
bash ./maestro test ./ -s 4

0 comments on commit f2fce26

Please sign in to comment.