File tree Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -167,20 +167,26 @@ jobs:
167
167
steps :
168
168
- uses : actions/checkout@v5
169
169
- name : Run in NetBSD
170
- uses : vmactions/netbsd-vm@v1
170
+ uses : cross-platform-actions/action@v0.29.0
171
171
with :
172
- release : " 10.1"
173
- usesh : true
174
- prepare : |
175
- /usr/sbin/pkg_add cmake googletest
176
-
172
+ operating_system : netbsd
173
+ version : ' 10.1'
177
174
run : |
175
+ set -x
178
176
echo '#### System information'
177
+ uname -a
178
+ echo "$SHELL"
179
+ pwd
180
+ ls -la
179
181
whoami
180
- env
182
+ env | sort
181
183
c++ --version
182
184
gcc --version
183
185
186
+ sudo pkgin update
187
+ sudo pkgin -y install cmake
188
+ sudo pkgin -y install googletest
189
+
184
190
echo '#### Building'
185
191
.build/build -DCMAKE_CXX_STANDARD=11 -DCMAKE_CXX_STANDARD_REQUIRED=ON -DCMAKE_CXX_EXTENSIONS=OFF
186
192
You can’t perform that action at this time.
0 commit comments