Skip to content

Commit be8b83d

Browse files
committed
rhel
1 parent 37b50c3 commit be8b83d

2 files changed

Lines changed: 12 additions & 15 deletions

File tree

.github/workflows/commit_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,19 @@ jobs:
6161
uses: actions/checkout@v4
6262

6363
- name: Prepare UBI Environment
64-
# UBI requires manual installation of basic tools usually found in full distros
64+
# UBI is missing basic tools required for script's execution
6565
run: |
66-
dnf install -y sudo procps-ng ncurses-devel tar
66+
dnf install -y sudo procps-ng tar ncurses-devel --setopt=install_weak_deps=False
6767
6868
- name: Make Script Executable
6969
run: chmod +x ./scripts/SetupLinux4Delphi.sh
7070

7171
- name: Run Setup Script
72-
# We pass "13.0" and force "dnf" to bypass registration checks
72+
# Passing 'dnf' forces your script to skip groupinstall logic if you used the fix above
7373
run: ./scripts/SetupLinux4Delphi.sh 13.0 dnf
7474

7575
- name: Test PAServer Execution
7676
run: |
7777
/usr/local/bin/pa13.0.sh &
78-
sleep 10
78+
sleep 15
7979
pgrep paserver && echo "✅ PAServer is running." || (echo "❌ PAServer failed"; exit 1)

README.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,20 @@
11
# Linux4Delphi Setup
22

3-
[![ShellCheck Status](https://github.com/jimmckeeth/linux4delphi/actions/workflows/commit_test.yml/badge.svg?label=ShellCheck)](https://github.com/jimmckeeth/linux4delphi/actions/workflows/commit_test.yml)
4-
[![Ubuntu 24.04 Status](https://github.com/jimmckeeth/linux4delphi/actions/workflows/commit_test.yml/badge.svg?label=Ubuntu%2024.04)](https://github.com/jimmckeeth/linux4delphi/actions/workflows/commit_test.yml)
5-
[![RHEL 10 Status](https://github.com/jimmckeeth/linux4delphi/actions/workflows/commit_test.yml/badge.svg?label=RHEL%2010)](https://github.com/jimmckeeth/linux4delphi/actions/workflows/commit_test.yml)
3+
![ShellCheck](https://img.shields.io/github/actions/workflow/status/jimmckeeth/linux4delphi/commit_test.yml?job=shellcheck&label=ShellCheck&logo=shell)
4+
![Ubuntu 24.04](https://img.shields.io/github/actions/workflow/status/jimmckeeth/linux4delphi/commit_test.yml?job=ubuntu_test&label=Ubuntu%2024.04&logo=ubuntu)
5+
![RHEL 10](https://img.shields.io/github/actions/workflow/status/jimmckeeth/linux4delphi/commit_test.yml?job=rhel_test&label=RHEL%2010&logo=redhat)
66

77

8-
![ShellCheck](https://img.shields.io/github/actions/workflow/status/OWNER/REPOSITORY/commit_test.yml?job=shellcheck&label=ShellCheck&logo=shell)
9-
![Ubuntu 24.04](https://img.shields.io/github/actions/workflow/status/OWNER/REPOSITORY/commit_test.yml?job=ubuntu_test&label=Ubuntu%2024.04&logo=ubuntu)
10-
![RHEL 10](https://img.shields.io/github/actions/workflow/status/OWNER/REPOSITORY/commit_test.yml?job=rhel_test&label=RHEL%2010&logo=redhat)
8+
**Update**: This was formerly known as *Delphi-on-Linux-Setup*, but it has been renamed to *Linux4Delphi* to better reflect the scope of the project. Update your bookmarks and references accordingly.
9+
10+
Scripts and resources to simplify the setup and development with Delphi on Linux. It should work with all x86 64-bit Linux distros that Delphi suports in WSL, Virtual Machines, or running on hardware native.
11+
12+
Supporting Delphi 10.2 *Tokyo* (19.0) through Delphi 13 *Florence* (37.0)
1113

1214
<a href="images/Linux4Delphi-Logo.webp">
1315
<img src="images/Linux4Delphi-Logo-256px.webp" align="right" alt="Linux4Delphi Logo" width="256" height="520" vspace="10" hspace="10" />
1416
</a>
1517

16-
**Note**: This was formerly known as *Delphi-on-Linux-Setup*, but it has been renamed to *Linux4Delphi* to better reflect the scope of the project. Update your bookmarks and references accordingly.
17-
18-
Scripts and resources to simplify the setup and development with Delphi on Linux. It should work with all x86 64-bit Linux distros that Delphi suports in WSL, Virtual Machines, or running on hardware native.
19-
20-
Supporting Delphi 10.2 *Tokyo* (19.0) through Delphi 13 *Florence* (37.0)
2118

2219
## Usage
2320

0 commit comments

Comments
 (0)