Skip to content

Commit

Permalink
debug v2
Browse files Browse the repository at this point in the history
  • Loading branch information
tjzel committed May 9, 2024
1 parent affc1a6 commit 1651d30
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/build-monorepo-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,26 +48,21 @@ jobs:
- name: Install dependencies for RootApp
working-directory: monorepo/RootApp
run: yarn install
- name: Echo different stuff
run: |
echo ${{github.ref}}
echo ${{github.ref_name}}
echo ${{github.head_ref}}
- name: Install Reanimated for RootApp
working-directory: monorepo/RootApp
run: yarn add react-native-reanimated@github:software-mansion/react-native-reanimated#${{ github.ref}}
run: yarn add react-native-reanimated@github:software-mansion/react-native-reanimated.git#commit=${{ github.sha }}

- name: Install dependencies for PackageApp
working-directory: monorepo/packages/PackageApp
run: yarn install
- name: Install Reanimated for PackageApp
working-directory: monorepo/packages/PackageApp
run: yarn add react-native-reanimated@github:software-mansion/react-native-reanimated#${{ github.ref }}
run: yarn add react-native-reanimated@github:software-mansion/react-native-reanimated.git#commit=${{ github.sha }}

- name: Setup hoisted Reanimated
if: ${{ inputs.is_hoisted }}
working-directory: monorepo
run: yarn add react-native-reanimated@github:software-mansion/react-native-reanimated#${{ github.ref }} -W
run: yarn add react-native-reanimated@github:software-mansion/react-native-reanimated.git#commit=${{ github.sha }} -W

- name: Install Pods for RootApp
if: ${{ inputs.platform == 'iOS' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-on-windows-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: yarn
- name: Install Reanimated
working-directory: App
run: yarn add react-native-reanimated@github:software-mansion/react-native-reanimated#${{ github.ref }}
run: yarn add react-native-reanimated@github:software-mansion/react-native-reanimated.git#commit=${{ github.sha }}
- name: Build Android App
working-directory: App/android
run: ./gradlew assembleDebug --console=plain
2 changes: 1 addition & 1 deletion .github/workflows/build-v8-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: yarn install
- name: Install test dependencies
working-directory: app
run: yarn add react-native-reanimated@github:software-mansion/react-native-reanimated#${{ github.ref }} react-native-v8 v8-android-jit
run: yarn add react-native-reanimated@github:software-mansion/react-native-reanimated.git#commit=${{ github.sha }} react-native-v8 v8-android-jit
- name: Configure V8
run: node reanimated_repo/.github/workflows/helper/configureV8.js
- name: Build Android app
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-static-framework-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: npx react-native init app
- name: Install dependencies
working-directory: app
run: yarn add react-native-reanimated@github:software-mansion/react-native-reanimated
run: yarn add react-native-reanimated@github:software-mansion/react-native-reanimated.git#commit=${{ github.sha }}
- name: Install Paper Pods
if: ${{ matrix.react-native-architecture == 'Paper' }}
working-directory: app/ios
Expand Down

0 comments on commit 1651d30

Please sign in to comment.