Skip to content

Commit

Permalink
Add x code and ruby version
Browse files Browse the repository at this point in the history
  • Loading branch information
ksharma-xyz committed Nov 23, 2024
1 parent 4ec5498 commit 85404ef
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 17 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,9 @@ jobs:

steps:
- uses: actions/checkout@v4
name: Setup environment variables
env:
NSW_TRANSPORT_API_KEY: ${{ secrets.NSW_TRANSPORT_API_KEY }}
run: |
echo "::set-env name=NSW_TRANSPORT_API_KEY::${{ secrets.NSW_TRANSPORT_API_KEY }}"
- name: Setup environment variables
run: |
echo "NSW_TRANSPORT_API_KEY=${{ secrets.NSW_TRANSPORT_API_KEY }}" >> $GITHUB_ENV
- name: set up JDK
uses: actions/setup-java@v4
Expand Down Expand Up @@ -72,12 +70,6 @@ jobs:
distribution: 'temurin'
java-version: 21

- name: Set up Kotlin
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '11'

- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
Expand Down
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.3.4
1 change: 1 addition & 0 deletions .xcode-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
15.3
8 changes: 2 additions & 6 deletions feature/trip-planner/network/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,9 @@ android {
namespace = "xyz.ksharma.krail.trip.planner.network"

buildTypes {
debug {
buildConfigField("String", "NSW_TRANSPORT_API_KEY", "\"$nswTransportApiKey\"")
}
debug {}

release {
buildConfigField("String", "NSW_TRANSPORT_API_KEY", "\"$nswTransportApiKey\"")
}
release {}
}
}

Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
android.useAndroidX=true
org.gradle.caching=true
kotlin.native.ignoreDisabledTargets=true

0 comments on commit 85404ef

Please sign in to comment.