Skip to content

Commit 6804d3a

Browse files
committed
lkl/ci: bump Windows openvpn version
OpenVPN-2.6.14-I001-amd64.msi is the latest, as per https://openvpn.net/community-downloads/ . Signed-off-by: David Disseldorp <ddiss@suse.de>
1 parent d059082 commit 6804d3a

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,13 @@ jobs:
7676
- name: Install openvpn
7777
if: runner.os == 'Windows'
7878
shell: pwsh
79+
env:
80+
file: "OpenVPN-2.6.14-I001-amd64.msi"
81+
log: "install.log"
7982
run: |
80-
curl -L -O https://swupdate.openvpn.org/community/releases/OpenVPN-2.5.3-I601-amd64.msi
81-
$file = "OpenVPN-2.5.3-I601-amd64.msi"
82-
$log = "install.log"
83-
$procMain = Start-Process "msiexec" "/i `"$file`" /qn /l*! `"$log`"" -NoNewWindow -PassThru
84-
$procLog = Start-Process "powershell" "Get-Content -Path `"$log`" -Wait" -NoNewWindow -PassThru
83+
curl -L -O "https://swupdate.openvpn.org/community/releases/${{ env.file }}"
84+
$procMain = Start-Process "msiexec" "/i ${{ env.file }} /qn /l*! ${{ env.log }}" -NoNewWindow -PassThru
85+
$procLog = Start-Process "powershell" "Get-Content -Path ${{ env.log }} -Wait" -NoNewWindow -PassThru
8586
$procMain.WaitForExit()
8687
$procLog.Kill()
8788
- name: Partial Clone

0 commit comments

Comments
 (0)