cvw/.github/workflows/rocky.yml

23 lines
466 B
YAML
Raw Normal View History

2024-07-06 14:00:28 +00:00
name: Installation test
on: [workflow_dispatch]
jobs:
install:
name: Test installation on Rocky 9
runs-on: ubuntu-latest
2024-07-06 14:37:41 +00:00
defaults:
run:
shell: bash
2024-07-06 14:00:28 +00:00
steps:
2024-07-07 00:27:22 +00:00
- run: df -h
2024-07-07 12:52:54 +00:00
- name: free up storage
run: sudo rm -rf /usr/local/lib/android
- run: docker run rockylinux:8
2024-07-07 01:54:55 +00:00
- run: dnf install -y sudo
2024-07-06 14:00:28 +00:00
- uses: actions/checkout@v4
- name: install
2024-07-07 01:53:05 +00:00
run: ./bin/wally-tool-chain-install.sh
2024-07-06 14:00:28 +00:00