-
Notifications
You must be signed in to change notification settings - Fork 15
51 lines (47 loc) · 1.13 KB
/
commit_test.yml
File metadata and controls
51 lines (47 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Linux4Delphi CI
on:
push:
branches: [ main, test** ]
pull_request:
branches: [ main, test** ]
jobs:
shellcheck:
name: ShellCheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
scandir: './scripts'
severity: error
ubuntu_test:
name: Ubuntu 24.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- name: Run Setup
run: |
chmod +x ./scripts/SetupLinux4Delphi.sh
sudo ./scripts/SetupLinux4Delphi.sh 13.0
- name: Verify PAServer
run: |
/usr/local/bin/pa13.0.sh &
sleep 10
pgrep paserver
rhel_test:
name: RHEL 10
runs-on: ubuntu-latest
container:
image: redhat/ubi10:latest
steps:
- uses: actions/checkout@v5
- name: Run Setup
run: |
chmod +x ./scripts/SetupLinux4Delphi.sh
./scripts/SetupLinux4Delphi.sh 13.0
- name: Verify PAServer
run: |
/usr/local/bin/pa13.0.sh &
sleep 15
pgrep paserver