Skip to content

Commit

Permalink
Remove unnecessary termux files
Browse files Browse the repository at this point in the history
  • Loading branch information
marcprux committed Oct 5, 2024
1 parent aba2e12 commit d231ab5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/sdks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,10 @@ jobs:
- name: Build Swift NIO package
run: |
cd swift-nio
# Disable new tests that don't compile for 32-bit ARM yet
if ${{ matrix.arch == 'armv7' }}; then
rm Tests/NIOCoreTests/ByteBufferQUICBinaryEncodingStrategyTests.swift
fi
git apply ../sdk-config/swift-nio-disable-ecn-tests.patch ../sdk-config/swift-nio-filesystem.patch ../sdk-config/swift-nio-ndk27.patch
${TOOLCHAIN}/bin/swift package update
cd .build/checkouts/
Expand Down
3 changes: 3 additions & 0 deletions get-packages-and-swift-source.swift
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,9 @@ if !fmd.fileExists(atPath: sdkPath) {
try fmd.removeItem(atPath: sdkPath.appendingPathComponent("usr/bin/curl-config"))
try fmd.removeItem(atPath: sdkPath.appendingPathComponent("usr/bin/xml2-config"))
try fmd.removeItem(atPath: sdkPath.appendingPathComponent("usr/share/man"))
try fmd.removeItem(atPath: sdkPath.appendingPathComponent("usr/lib/ossl-modules"))
try fmd.removeItem(atPath: sdkPath.appendingPathComponent("usr/lib/engines-3"))
try fmd.removeItem(atPath: sdkPath.appendingPathComponent("usr/etc"))
}

_ = runCommand("patchelf", with: ["--set-rpath", "$ORIGIN",
Expand Down

0 comments on commit d231ab5

Please sign in to comment.