Skip to content

Commit 04430f5

Browse files
committed
Fix pam-ipmi test
1 parent b1146be commit 04430f5

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/pam-ipmi.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: pam-ipmi Tests
33
# START OF COMMON SECTION
44
on:
55
push:
6-
#branches: [ 'master', 'main', 'release/**' ]
6+
branches: [ 'master', 'main', 'release/**' ]
77
pull_request:
88
branches: [ '*' ]
99

@@ -42,7 +42,7 @@ jobs:
4242
fail-fast: false
4343
matrix:
4444
git_ref: [ e4b13e6725abb178f62ee897fe1c0e81b06a9431 ]
45-
name: ${{ matrix.ref }}
45+
name: ${{ matrix.git_ref }}
4646
runs-on: ubuntu-latest
4747
needs: build_wolfssl
4848
steps:
@@ -71,9 +71,16 @@ jobs:
7171
with:
7272
repository: openbmc/pam-ipmi
7373
path: pam-ipmi
74+
ref: ${{ matrix.git_ref }}
7475

7576
- name: Build pam-ipmi
7677
working-directory: pam-ipmi
7778
run: |
79+
patch -p1 < ../osp/pam-ipmi/*-${{ matrix.git_ref }}.patch
7880
PKG_CONFIG_PATH=$GITHUB_WORKSPACE/build-dir/lib/pkgconfig meson setup build
7981
ninja -C build
82+
83+
- name: Confirm built with wolfSSL
84+
working-directory: pam-ipmi
85+
run: |
86+
ldd ./build/src/pam_ipmisave/pam_ipmisave.so | grep wolfssl

0 commit comments

Comments
 (0)