Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
marcprux committed Nov 30, 2024
1 parent a982754 commit 3c2e7a4
Show file tree
Hide file tree
Showing 599 changed files with 365,002 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: swift-sqlite ci
on:
push:
branches: [ main ]
workflow_dispatch:
pull_request:
branches:
- '*'
schedule:
- cron: '0 6,18 * * *'
jobs:
test:
# emulator fails to launch on ARM macOS with: HVF error: HV_UNSUPPORTED
#runs-on: macos-15
# so we need to run on Intel macOS
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: "Test Swift Package Locally"
run: swift test
- name: "Test Swift Package on Android"
uses: skiptools/swift-android-action@v1
- name: "Test Swift Package on iOS"
run: xcodebuild test -sdk "iphonesimulator" -destination "platform=iOS Simulator,name=iPhone 15" -scheme "$(xcodebuild -list -json | jq -r '.workspace.schemes[-1]')"
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: swift test
windows:
runs-on: windows-latest
steps:
- uses: compnerd/gha-setup-swift@main
with:
branch: swift-5.9-release
tag: 5.9-RELEASE
- uses: actions/checkout@v4
- run: swift build
- run: swift test

32 changes: 32 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# OS X
.DS_Store
.*.swp

# Xcode
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate

# Carthage
/Carthage/

# Makefile
bin/

# Swift Package Manager
.build
Packages/
.swiftpm/
Loading

0 comments on commit 3c2e7a4

Please sign in to comment.