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-06 14:37:41 +00:00
|
|
|
defaults:
|
2024-07-16 06:14:24 +00:00
|
|
|
run:
|
2024-07-06 14:37:41 +00:00
|
|
|
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
|
2024-07-07 13:36:44 +00:00
|
|
|
- run: docker run -ia 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-16 06:14:24 +00:00
|
|
|
|