Manny the Manager #11
Workflow file for this run
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: Manny the Manager | |
on: | |
workflow_dispatch: | |
inputs: | |
checkout: | |
required: true | |
type: boolean | |
cleanup: | |
required: true | |
type: boolean | |
peek: | |
required: true | |
type: boolean | |
jobs: | |
inventory: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Disk usage ... | |
run: | | |
cd | |
du -hs .[^.]* | |
- name: Disk inventory (1/2) ... | |
run: | | |
echo "df -h =========================================================================" | |
df -h | |
echo "mounts ========================================================================" | |
mount | |
- name: File inventory (1/2) ... | |
run: | | |
echo "Current directory: $(pwd)" | |
echo "Files in $HOME ================================================================" | |
ls $HOME | |
echo "Find $HOME ====================================================================" | |
find $HOME | |
- name: Container inventory ... | |
run: | | |
echo "Available container images: ===================================================" | |
docker images | |
echo "Available containers: =========================================================" | |
docker ps -a | |
checkout: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Restore Cache of dl/ | |
uses: actions/cache@v4 | |
with: | |
path: dl/ | |
key: dl-netconf-${{ hashFiles('.git/modules/buildroot/HEAD', 'configs/*', 'package/*/*.hash') }} | |
restore-keys: | | |
dl-netconf- | |
dl- | |
- name: Restore Cache of .ccache/ | |
uses: actions/cache@v4 | |
with: | |
path: .ccache/ | |
key: ccache-x86_64-${{ hashFiles('.git/modules/buildroot/HEAD', 'package/*/*.hash') }} | |
restore-keys: | | |
ccache-x86_64- | |
ccache- | |
- name: Disk inventory (2/2) ... | |
run: | | |
echo "df -h =========================================================================" | |
df -h | |
echo "mounts ========================================================================" | |
mount | |
- name: File inventory (2/2) ... | |
run: | | |
echo "Current directory: $(pwd)" | |
echo "Files in $HOME ================================================================" | |
ls $HOME | |
echo "Find $HOME ====================================================================" | |
find $HOME | |
peeky: | |
if: ${{ inputs.peek }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Peek & Poke ... | |
run: | | |
whoami | |
ls -l /mnt/ | |
cat /mnt/DATALOSS_WARNING_README.txt | |
sudo mkdir /mnt/x-aarch64 | |
sudo chown $(id -un):$(id -gn) /mnt/x-aarch64 | |
ls -l /mnt/ | |
cleanup: | |
if: ${{ inputs.cleanup }} | |
needs: [inventory, peeky] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cleaning up cruft ... | |
run: | | |
docker image prune -af | |
docker volume prune -f | |
docker container prune -f |