Skip to content

Execute APP-MANAGER directly #4

Execute APP-MANAGER directly

Execute APP-MANAGER directly #4

Workflow file for this run

name: "AM test suite 🧪"
on:
workflow_dispatch:
push:
branches: '**'
# paths:
# - quickget
pull_request:
branches: '**'
# paths:
# - quickget
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
am:
name: Install AM 📝
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install AM
run: |
printf '\tSetting up environment...\n\n'
export TERM=xterm
printf '\n\n\tCretaing directory structure...\n\n'
mkdir -p results
printf '\n\n\tInstalling dependencies...\n\n'
sudo apt install -y wget curl zsync
printf '\n\n\tMaking INSTALL executable...\n\n'
chmod +x ./INSTALL
printf '\n\n\tInstalling AM...\n\n'
sudo ./INSTALL
printf '\n\n\tGetting AM version...\n\n'
/opt/am/APP-MANAGER --version \
&& printf '\n\n\tInstallation DONE\n\n' \
|| echo 'Something goes wrong!' && exit 1