Skip to content

Commit

Permalink
Merge pull request #4665 from wix/ci/remove-android-phase
Browse files Browse the repository at this point in the history
build(android): remove Legacy package phase from release.
  • Loading branch information
asafkorem authored Dec 19, 2024
2 parents f0f8995 + 293208b commit 5aa1224
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 15 deletions.
12 changes: 0 additions & 12 deletions .buildkite/pipeline.release.fast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,6 @@
JAVA_HOME: /opt/openjdk/openlogic-openjdk-17.0.9+9-mac-x64/jdk-17.0.9.jdk/Contents/Home
artifact_paths: "/Users/builder/uibuilder/work/detox/Detox-android/**/*"

- label: ":android: Package android Legacy"
key: 'android_package_legacy'
command:
- "nvm install"
- "npm install"
- "npm run package:android"
env:
REACT_NATIVE_VERSION: 0.71.10
DETOX_DISABLE_POSTINSTALL: true
DETOX_DISABLE_POD_INSTALL: true
artifact_paths: "/Users/builder/uibuilder/work/detox/Detox-android/**/*"

- label: ":shipit: Publish"
depends_on:
- 'android_package'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ The most difficult part of automated testing on mobile is the tip of the testing

Detox was built from the ground up to support React Native projects.

While Detox should work out of the box with almost any React Native version of the latest minor releases, official support is provided for React Native versions `0.72.x`, `0.73.x`, `0.74.x`, `0.75.x`, `0.76.x` without React Native's ["New Architecture"](https://reactnative.dev/docs/the-new-architecture/landing-page).
While Detox should work out of the box with almost any React Native version of the latest minor releases, official support is provided for React Native versions `0.73.x`, `0.74.x`, `0.75.x` and `0.76.x` without React Native's ["New Architecture"](https://reactnative.dev/docs/the-new-architecture/landing-page).

Newer versions, as well as React Native's "New Architecture", may work with Detox, but have not been tested out yet by the Detox team.

Expand Down
2 changes: 1 addition & 1 deletion detox/test/e2e/07.stress-tests.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('StressTests', () => {
}
});

it(':android: should handle tap during storage stress', async () => {
it.skip(':android: should handle tap during storage stress', async () => {

Check warning on line 43 in detox/test/e2e/07.stress-tests.test.js

View workflow job for this annotation

GitHub Actions / Linux

Disabled test

Check warning on line 43 in detox/test/e2e/07.stress-tests.test.js

View workflow job for this annotation

GitHub Actions / Linux

Disabled test
try {
await element(by.text('Storage Stress')).tap();
await expect(element(by.text('StorageStress'))).toBeVisible();
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction/partials/_getting-started-rn.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Detox was built from the ground up to support "classic" React Native projects.

:::info Note

While Detox should work out of the box with almost any React Native version from the past few minor releases, official support is provided for React Native versions `0.71.x`, `0.72.x` and `0.73.x` without React Native's ["New Architecture"](https://reactnative.dev/docs/the-new-architecture/landing-page).
While Detox should work out of the box with almost any React Native version from the past few minor releases, official support is provided for React Native versions `0.73.x`, `0.74.x`, `0.75.x` and `0.76.x` without React Native's ["New Architecture"](https://reactnative.dev/docs/the-new-architecture/landing-page).

Newer versions, as well as React Native's "New Architecture", may work with Detox, but have not been tested out yet by the Detox team.

Expand Down

0 comments on commit 5aa1224

Please sign in to comment.