Skip to content

Commit

Permalink
3
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit committed Jun 28, 2024
1 parent 1487912 commit 03f9071
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,18 @@ jobs:
- name: Generate matrix
id: set-matrix
run: |
printf '\tSetting up environment...\n'
printf '\n\tCreating directory structure...\n'
mkdir -p results /usr/local/bin
# printf '\n\tUpgrading ubuntu host...\n'
# sudo apt update && sudo apt upgrade
printf '\n\tInstalling dependencies...\n'
sudo apt install -y wget curl zsync 2> /dev/null
printf '\n\tMaking needed files executable...\n'
chmod +x ./INSTALL
printf '\n\tInstalling AM...\n'
sudo ./INSTALL
printf '\n'
chmod +x .github/workflows/generate-matrix.sh
.github/workflows/generate-matrix.sh
shell: bash
Expand All @@ -51,21 +63,9 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up environment
- name: Check
run: |
ls -al .github/workflows
printf '\tSetting up environment...\n'
printf '\n\tCreating directory structure...\n'
mkdir -p results /usr/local/bin
# printf '\n\tUpgrading ubuntu host...\n'
# sudo apt update && sudo apt upgrade
printf '\n\tInstalling dependencies...\n'
sudo apt install -y wget curl zsync 2> /dev/null
printf '\n\tMaking needed files executable...\n'
chmod +x ./INSTALL
printf '\n\tInstalling AM...\n'
sudo ./INSTALL
printf '\n'
echo "Installed version: $(am version)"
- name: Install ${{ matrix.app }}
Expand Down

0 comments on commit 03f9071

Please sign in to comment.