Skip to content

Commit c57526f

Browse files
committed
Remove Detox build caching step and add new Detox scripts for Android debug and release builds
1 parent 713693d commit c57526f

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/e2e-android.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Free Disk Space (Ubuntu)
1313
uses: jlumbroso/free-disk-space@main
1414
with:
15-
tool-cache: true
15+
# tool-cache: true
1616
android: false
1717

1818
- name: Setup
@@ -24,30 +24,30 @@ jobs:
2424
- name: Setup Java
2525
uses: actions/setup-java@v4
2626
with:
27-
cache: gradle
27+
# cache: gradle
2828
distribution: zulu
2929
java-version: 17
3030

3131
- name: Setup Gradle
3232
uses: gradle/actions/setup-gradle@v3
3333
with:
3434
gradle-version: wrapper
35-
cache-read-only: false
35+
# cache-read-only: false
3636

3737
- name: Example App Yarn install
3838
run: |
3939
cd example
4040
yarn install --immutable
4141
cd ..
4242
43-
- name: Cache Detox build
44-
id: cache-detox-build
45-
uses: actions/cache@v4
46-
with:
47-
path: example/android/app/build
48-
key: ${{ runner.os }}-detox-build
49-
restore-keys: |
50-
${{ runner.os }}-detox-build
43+
# - name: Cache Detox build
44+
# id: cache-detox-build
45+
# uses: actions/cache@v4
46+
# with:
47+
# path: example/android/app/build
48+
# key: ${{ runner.os }}-detox-build
49+
# restore-keys: |
50+
# ${{ runner.os }}-detox-build
5151

5252
- name: Detox build
5353
env:

0 commit comments

Comments
 (0)