We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c3f1e50 + 6465cbb commit 5f94600Copy full SHA for 5f94600
.github/workflows/openvpn.yml
@@ -77,13 +77,15 @@ jobs:
77
ref: ${{ matrix.openvpn_ref }}
78
fetch-depth: 1
79
80
- - name: Apply patch
81
- working-directory: openvpn
82
- run: |
83
- # delete the test_des_encrypt test case, if it exists
84
- perl -ni -e 'print unless /cmocka_unit_test\(test_des_encrypt\),/' tests/unit_tests/openvpn/test_crypto.c
85
- # show the results of the patch
86
- git diff
+ - name: Checkout OSP
+ uses: actions/checkout@v4
+ with:
+ repository: wolfssl/osp
+ path: osp
+ fetch-depth: 1
+ - run: |
87
+ cd openvpn
88
+ patch -p1 < $GITHUB_WORKSPACE/osp/wolfProvider/openvpn/openvpn-${{ matrix.openvpn_ref }}-wolfprov.patch
89
90
- name: Build OpenVPN
91
working-directory: openvpn
0 commit comments