Skip to content

Commit 86e956f

Browse files
committed
try again
1 parent ec3ac68 commit 86e956f

10 files changed

Lines changed: 57 additions & 31 deletions

File tree

.flox/env/manifest.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/ci-e2e-nightly.yml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,25 @@ jobs:
5252
uses: flox/install-flox-action@v2.2.0
5353
- name: Yarn debug (iOS env)
5454
run: |
55-
CLEAN_PATH=$(echo "$PATH" | tr ':' '\n' | grep -v '/.yarn/bin' | paste -sd ':' -)
56-
PATH="$CLEAN_PATH" flox activate -d env/ios/latest -- bash -lc 'echo PATH=$PATH && ls -l /Users/runner/.local/bin || true && which yarn && yarn --version && node -v && corepack --version'
55+
CLEAN_PATH=$(printf "%s" "$PATH" | tr ':' '\n' | grep -v '/.yarn/bin' | awk '!seen[$0]++' | paste -sd ':' -)
56+
PATH="$CLEAN_PATH" flox activate -d env/ios/latest -- bash -lc '
57+
PATH=$(printf "%s" "$PATH" | tr ":" "\n" | grep -v "/.yarn/bin" | awk "!seen[$0]++" | paste -sd ":" -)
58+
export PATH
59+
echo PATH=$PATH
60+
ls -l /Users/runner/.local/bin || true
61+
which yarn
62+
yarn --version
63+
node -v
64+
corepack --version
65+
'
5766
- name: iOS E2E Tests
5867
run: |
59-
CLEAN_PATH=$(echo "$PATH" | tr ':' '\n' | grep -v '/.yarn/bin' | paste -sd ':' -)
60-
PATH="$CLEAN_PATH" flox activate -d env/ios/latest -- bash -lc "yarn e2e:ios"
68+
CLEAN_PATH=$(printf "%s" "$PATH" | tr ':' '\n' | grep -v '/.yarn/bin' | awk '!seen[$0]++' | paste -sd ':' -)
69+
PATH="$CLEAN_PATH" flox activate -d env/ios/latest -- bash -lc '
70+
PATH=$(printf "%s" "$PATH" | tr ":" "\n" | grep -v "/.yarn/bin" | awk "!seen[$0]++" | paste -sd ":" -)
71+
export PATH
72+
yarn e2e:ios
73+
'
6174
6275
run-e2e-android:
6376
continue-on-error: true

.github/workflows/ci-e2e-optional.yml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,25 @@ jobs:
5757
uses: flox/install-flox-action@v2.2.0
5858
- name: Yarn debug (iOS env)
5959
run: |
60-
CLEAN_PATH=$(echo "$PATH" | tr ':' '\n' | grep -v '/.yarn/bin' | paste -sd:)
61-
PATH="$CLEAN_PATH" flox activate -d env/ios/latest -- bash -lc 'echo PATH=$PATH && ls -l /Users/runner/.local/bin || true && which yarn && yarn --version && node -v && corepack --version'
60+
CLEAN_PATH=$(printf "%s" "$PATH" | tr ':' '\n' | grep -v '/.yarn/bin' | awk '!seen[$0]++' | paste -sd ':' -)
61+
PATH="$CLEAN_PATH" flox activate -d env/ios/latest -- bash -lc '
62+
PATH=$(printf "%s" "$PATH" | tr ":" "\n" | grep -v "/.yarn/bin" | awk "!seen[$0]++" | paste -sd ":" -)
63+
export PATH
64+
echo PATH=$PATH
65+
ls -l /Users/runner/.local/bin || true
66+
which yarn
67+
yarn --version
68+
node -v
69+
corepack --version
70+
'
6271
- name: iOS E2E Tests
6372
run: |
64-
CLEAN_PATH=$(echo "$PATH" | tr ':' '\n' | grep -v '/.yarn/bin' | paste -sd:)
65-
PATH="$CLEAN_PATH" flox activate -d env/ios/latest -- bash -lc "yarn e2e:ios"
73+
CLEAN_PATH=$(printf "%s" "$PATH" | tr ':' '\n' | grep -v '/.yarn/bin' | awk '!seen[$0]++' | paste -sd ':' -)
74+
PATH="$CLEAN_PATH" flox activate -d env/ios/latest -- bash -lc '
75+
PATH=$(printf "%s" "$PATH" | tr ":" "\n" | grep -v "/.yarn/bin" | awk "!seen[$0]++" | paste -sd ":" -)
76+
export PATH
77+
yarn e2e:ios
78+
'
6679
6780
run-e2e-android:
6881
if: (github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'run-e2e') || github.event_name == 'push') && (github.event.inputs.platforms == 'all' || github.event.inputs.platforms == '' || github.event.inputs.platforms == 'android' || github.event.inputs.platforms == null)

env/android/android-common/.flox/env/manifest.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

env/android/latest/.flox/env/manifest.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)