Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 25 additions & 3 deletions .github/workflows/MistKit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,29 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
os: windows
swift_project: MistKit
# files: ${{ join(fromJSON(steps.coverage-files.outputs.files), ',') }}
# files: ${{ join(fromJSON(steps.coverage-files.outputs.files), ',') }}
build-android:
name: Build on Android
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }}
strategy:
fail-fast: false
matrix:
swift:
- version: "6.1"
- version: "6.2"
android-api-level: [28, 33, 34]
steps:
- uses: actions/checkout@v4
- uses: brightdigit/swift-build@14-android-skip
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

switch to tag

with:
scheme: ${{ env.PACKAGE_NAME }}
type: android
android-swift-version: ${{ matrix.swift.version }}
android-api-level: ${{ matrix.android-api-level }}
android-run-tests: true
# Note: Code coverage is not supported on Android builds
# The Swift Android SDK does not include LLVM coverage tools (llvm-profdata, llvm-cov)
build-macos:
name: Build on macOS
env:
Expand Down Expand Up @@ -153,9 +175,9 @@ jobs:

lint:
name: Linting
if: "!contains(github.event.head_commit.message, 'ci skip')"
if: "!contains(github.event.head_commit.message, 'ci skip')"
runs-on: ubuntu-latest
needs: [build-ubuntu, build-macos, build-windows]
needs: [build-ubuntu, build-macos, build-windows, build-android]
env:
MINT_PATH: .mint/lib
MINT_LINK_PATH: .mint/bin
Expand Down
6 changes: 3 additions & 3 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ let package = Package(
dependencies: [
// Swift OpenAPI Runtime dependencies
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.8.0"),
.package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.1.0"),
.package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.2.0"),
// Crypto library for cross-platform cryptographic operations
.package(url: "https://github.com/apple/swift-crypto.git", from: "3.0.0"),
// Logging library for cross-platform logging
Expand Down
Loading