Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/e2e-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ on:
description: 'Run React Native tests'
type: boolean
default: true
push:
branches: [main]
paths:
- 'plugins/*/plugin.json'
schedule:
# Run weekly on Monday at 00:00 UTC
- cron: '0 0 * * 1'
Expand All @@ -26,7 +30,7 @@ concurrency:
jobs:
# Android example E2E tests (min/max devices)
android-e2e:
if: ${{ github.event_name == 'schedule' || inputs.run_android }}
if: ${{ github.event_name == 'schedule' || github.event_name == 'push' || inputs.run_android }}
uses: ./.github/workflows/e2e-android.yml
with:
devices: '["min","max"]'
Expand All @@ -39,7 +43,7 @@ jobs:

# iOS example E2E tests (min/max devices)
ios-e2e:
if: ${{ github.event_name == 'schedule' || inputs.run_ios }}
if: ${{ github.event_name == 'schedule' || github.event_name == 'push' || inputs.run_ios }}
uses: ./.github/workflows/e2e-ios.yml
with:
matrix-include: '[{"device":"min","os":"macos-14"},{"device":"max","os":"macos-26"}]'
Expand All @@ -50,7 +54,7 @@ jobs:

# React Native E2E tests (Android min/max, iOS min/max, Web)
react-native-e2e:
if: ${{ github.event_name == 'schedule' || inputs.run_react_native }}
if: ${{ github.event_name == 'schedule' || github.event_name == 'push' || inputs.run_react_native }}
uses: ./.github/workflows/e2e-react-native.yml
with:
matrix-include: '[{"platform":"android","device":"min","os":"ubuntu-24.04"},{"platform":"android","device":"max","os":"ubuntu-24.04"},{"platform":"ios","device":"min","os":"macos-14"},{"platform":"ios","device":"max","os":"macos-26"},{"platform":"web","device":"none","os":"ubuntu-24.04"}]'
Expand Down
2 changes: 1 addition & 1 deletion plugins/android/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "android",
"version": "0.0.4",
"version": "0.0.5",
"description": "Sets Android home/AVD paths inside the Devbox virtenv for reproducible, project-local Android tooling.",
"env": {
"ANDROID_USER_HOME": "{{ .Virtenv }}/android",
Expand Down
2 changes: 1 addition & 1 deletion plugins/ios/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ios",
"version": "0.0.4",
"version": "0.0.5",
"description": "Configures iOS tooling inside Devbox and ensures Xcode toolchain usage.",
"env": {
"IOS_CONFIG_DIR": "{{ .DevboxDir }}",
Expand Down
2 changes: 1 addition & 1 deletion plugins/react-native/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "0.0.5",
"version": "0.0.6",
"description": "Aggregates the Android and iOS Devbox plugins for React Native projects.",
"include": [
"github:segment-integrations/mobile-devtools?dir=plugins/android&ref=main",
Expand Down