cvw/.github/workflows/rockyInstall.yml

24 lines
568 B
YAML
Raw Normal View History

2024-07-16 06:14:24 +00:00
name: Rocky installation test
2024-07-06 14:00:28 +00:00
on: [workflow_dispatch]
jobs:
install:
name: Test installation on Rocky 9
runs-on: ubuntu-latest
2024-07-16 06:22:53 +00:00
container:
image: rockylinux:8
options: --privileged --mount type=bind, source=/, target=/
2024-07-06 14:00:28 +00:00
steps:
2024-07-16 06:22:53 +00:00
- name: check distro
run: cat /etc/os-release
2024-07-07 01:54:55 +00:00
- run: dnf install -y sudo
2024-07-16 06:22:53 +00:00
- name: free up storage
run: |
df -h
sudo rm -rf /usr/local/lib/android
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-16 06:14:24 +00:00