-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from syxc/redwood
Redwood
- Loading branch information
Showing
3 changed files
with
98 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
* text=auto eol=lf | ||
*.bat text eol=crlf | ||
|
||
README text | ||
LICENSE text | ||
CONTRIBUTING text | ||
|
||
.gitignore text | ||
*.gitattributes text | ||
*.xcconfig text | ||
*.md text diff=markdown | ||
|
||
# | ||
# Exclude files from exporting | ||
# | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
|
||
*.jar binary | ||
*.png binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.webp binary | ||
*.so binary | ||
|
||
# Linguist language overrides | ||
*.xcconfig linguist-language=kotlin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: iOS CI | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
paths-ignore: | ||
- '.idea/**' | ||
- '.gitattributes' | ||
- '.github/**.json' | ||
- '.gitignore' | ||
- '.gitmodules' | ||
- '**.md' | ||
- 'LICENSE' | ||
- 'NOTICE' | ||
- docs | ||
- androidApp | ||
pull_request: | ||
branches: [ "master" ] | ||
paths-ignore: | ||
- '.idea/**' | ||
- '.gitattributes' | ||
- '.github/**.json' | ||
- '.gitignore' | ||
- '.gitmodules' | ||
- '**.md' | ||
- 'LICENSE' | ||
- 'NOTICE' | ||
- docs | ||
- androidApp | ||
|
||
# Cancel any current or previous job from the same PR | ||
concurrency: | ||
group: ios-${{ github.head_ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
|
||
# macos-latest | ||
runs-on: macos-14 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'corretto' | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- uses: actions/checkout@v2 | ||
- uses: actions/cache@v2 | ||
with: | ||
path: iosApp/Pods | ||
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-pods- | ||
- name: CocoaPod Install | ||
run: | | ||
./gradlew :shared:generateDummyFramework | ||
cd iosApp | ||
pod install | ||
- name: Build with Xcode | ||
run: xcodebuild -workspace iosApp/iosApp.xcworkspace -scheme iosApp -configuration Debug -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15' |