Skip to content

Commit

Permalink
Merge pull request #12 from syxc/redwood
Browse files Browse the repository at this point in the history
Redwood
  • Loading branch information
syxc authored May 14, 2024
2 parents 6f4eac0 + ec8309e commit 6f38aef
Show file tree
Hide file tree
Showing 3 changed files with 98 additions and 2 deletions.
27 changes: 27 additions & 0 deletions .gitattributes
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
5 changes: 3 additions & 2 deletions .github/workflows/build.yml → .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Android CI

on:
push:
Expand Down Expand Up @@ -44,5 +44,6 @@ jobs:

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew --scan --stacktrace $1 $2 build
run: ./gradlew --scan --stacktrace assembleDebug
68 changes: 68 additions & 0 deletions .github/workflows/ios.yml
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'

0 comments on commit 6f38aef

Please sign in to comment.