Skip to content

Commit 3e9a4bc

Browse files
committed
Actions update
Signed-off-by: Scott R. Shinn <scott@atomicorp.com>
1 parent b9f0409 commit 3e9a4bc

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# GitHub Actions workflows
22

33
- **codeql.yml** – CodeQL analysis (push/PR to master, weekly).
4-
- **make-multi-platform.yml** – Build with Make on Rocky Linux 10 (server/agent) and Windows agent (cross-compile). Based on the multi-platform CI idea from PR #2158 by @cmac9203; adapted for this project’s Make build.
4+
- **make-multi-platform.yml** – Build with Make on Rocky Linux 9 (server/agent) and Windows agent cross-compile. Based on the multi-platform CI idea from PR #2158 by @cmac9203; adapted for this project’s Make build.

.github/workflows/make-multi-platform.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ on:
88
branches: [ "main", "master" ]
99
pull_request:
1010
branches: [ "main", "master" ]
11+
workflow_dispatch: # Run manually from Actions tab (choose branch)
1112

1213
jobs:
1314
build-rocky:
14-
name: Rocky Linux 10 (${{ matrix.target }})
15+
name: Rocky Linux 9 (${{ matrix.target }})
1516
runs-on: ubuntu-latest
16-
container: rockylinux:10
17+
container: rockylinux:9
1718
strategy:
1819
fail-fast: false
1920
matrix:
@@ -24,6 +25,8 @@ jobs:
2425

2526
- name: Install build dependencies
2627
run: |
28+
dnf install -y dnf-plugins-core
29+
dnf config-manager --set-enabled crb || true
2730
dnf install -y gcc make openssl-devel pcre2-devel zlib-devel \
2831
systemd-devel libevent-devel
2932
dnf install -y file-devel || true

0 commit comments

Comments
 (0)