Skip to content

Commit 8b58427

Browse files
Merge pull request iNavFlight#11203 from sensei-hacker/ci-sitl-cygwin-dll
Include cygwin1.dll in Windows SITL artifact
2 parents b5da577 + e6306f8 commit 8b58427

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,11 +256,15 @@ jobs:
256256
for f in ./build_SITL/*_SITL.exe; do
257257
mv $f $(echo $f | sed -e 's/_[0-9]\+\.[0-9]\+\.[0-9]\+//')
258258
done
259+
- name: Copy cygwin1.dll
260+
run: cp /bin/cygwin1.dll ./build_SITL/
259261
- name: Upload artifacts
260262
uses: actions/upload-artifact@v4
261263
with:
262264
name: ${{ env.BUILD_NAME }}_SITL-WIN
263-
path: ./build_SITL/*.exe
265+
path: |
266+
./build_SITL/*.exe
267+
./build_SITL/cygwin1.dll
264268
265269
test:
266270
#needs: [build]

0 commit comments

Comments
 (0)