Skip to content

Commit e6306f8

Browse files
sensei-hackerclaude
andcommitted
Include cygwin1.dll in Windows SITL artifact
Adds cygwin1.dll to the Windows SITL build artifact so users don't need Cygwin installed to run the SITL executable. Cherry-picked from PR iNavFlight#11133. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 880c89a commit e6306f8

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)