Skip to content

Commit c7edb2b

Browse files
committed
fix dragonflybsd error
1 parent c5320f5 commit c7edb2b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/uctags-publish.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ jobs:
9999
profile: [debug, release]
100100

101101
steps:
102+
- run: curl -LO https://github.com/leleliu008/uppm-package-repository-dragonflybsd-6.4-x86_64/releases/download/2023.12.04/curl-8.3.0-dragonflybsd-6.4-x86_64.tar.xz
103+
- run: tar xvf curl-8.3.0-dragonflybsd-6.4-x86_64.tar.xz --strip-components=1
104+
- run: rm -rf include/ lib/ share/
105+
102106
- uses: vmactions/dragonflybsd-vm@v1
103107
with:
104108
release: "${{ matrix.version }}.0"
@@ -113,7 +117,10 @@ jobs:
113117
114118
set -e
115119
116-
run pkg install -y curl libnghttp2 gcc
120+
export PATH="$PWD/bin:$PATH"
121+
122+
# I have no idea why curl can not be installed via pkg
123+
#run pkg install -y curl libnghttp2 gcc
117124
118125
run curl -LO https://raw.githubusercontent.com/leleliu008/ppkg/master/ppkg
119126
run chmod a+x ppkg

0 commit comments

Comments
 (0)