File tree Expand file tree Collapse file tree 5 files changed +18
-18
lines changed
actions/build-hermesc-windows
packages/gradle-plugin/shared/src/test/kotlin/com/facebook/react/utils Expand file tree Collapse file tree 5 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -14,23 +14,23 @@ runs:
14
14
uses : actions/download-artifact@v4
15
15
with :
16
16
name : hermes-workspace
17
- path : ' D :\tmp\hermes'
17
+ path : ' C :\tmp\hermes'
18
18
- name : Set up workspace
19
19
shell : powershell
20
20
run : |
21
- mkdir -p D :\tmp\hermes\osx-bin
21
+ mkdir -p C :\tmp\hermes\osx-bin
22
22
mkdir -p .\packages\react-native\sdks\hermes
23
- cp -r -Force D :\tmp\hermes\hermes\* .\packages\react-native\sdks\hermes\.
23
+ cp -r -Force C :\tmp\hermes\hermes\* .\packages\react-native\sdks\hermes\.
24
24
cp -r -Force .\packages\react-native\sdks\hermes-engine\utils\* .\packages\react-native\sdks\hermes\.
25
25
- name : Windows cache
26
26
uses : actions/cache@v4
27
27
with :
28
28
key : v3-hermes-${{ github.job }}-windows-${{ inputs.hermes-version }}-${{ inputs.react-native-version }}
29
29
path : |
30
- D :\tmp\hermes\win64-bin\
31
- D :\tmp\hermes\hermes\icu\
32
- D :\tmp\hermes\hermes\deps\
33
- D :\tmp\hermes\hermes\build_release\
30
+ C :\tmp\hermes\win64-bin\
31
+ C :\tmp\hermes\hermes\icu\
32
+ C :\tmp\hermes\hermes\deps\
33
+ C :\tmp\hermes\hermes\build_release\
34
34
- name : setup-msbuild
35
35
36
36
- name : Set up workspace
83
83
84
84
with :
85
85
name : hermes-win64-bin
86
- path : D :\tmp\hermes\win64-bin\
86
+ path : C :\tmp\hermes\win64-bin\
Original file line number Diff line number Diff line change @@ -123,9 +123,9 @@ jobs:
123
123
runs-on : windows-2025
124
124
needs : prepare_hermes_workspace
125
125
env :
126
- HERMES_WS_DIR : ' D :\tmp\hermes'
127
- HERMES_TARBALL_ARTIFACTS_DIR : ' D :\tmp\hermes\hermes-runtime-darwin'
128
- HERMES_OSXBIN_ARTIFACTS_DIR : ' D :\tmp\hermes\osx-bin'
126
+ HERMES_WS_DIR : ' C :\tmp\hermes'
127
+ HERMES_TARBALL_ARTIFACTS_DIR : ' C :\tmp\hermes\hermes-runtime-darwin'
128
+ HERMES_OSXBIN_ARTIFACTS_DIR : ' C :\tmp\hermes\osx-bin'
129
129
ICU_URL : " https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-64_2-Win64-MSVC2017.zip"
130
130
MSBUILD_DIR : ' C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin'
131
131
CMAKE_DIR : ' C:\Program Files\CMake\bin'
Original file line number Diff line number Diff line change @@ -119,9 +119,9 @@ jobs:
119
119
runs-on : windows-2025
120
120
needs : prepare_hermes_workspace
121
121
env :
122
- HERMES_WS_DIR : ' D :\tmp\hermes'
123
- HERMES_TARBALL_ARTIFACTS_DIR : ' D :\tmp\hermes\hermes-runtime-darwin'
124
- HERMES_OSXBIN_ARTIFACTS_DIR : ' D :\tmp\hermes\osx-bin'
122
+ HERMES_WS_DIR : ' C :\tmp\hermes'
123
+ HERMES_TARBALL_ARTIFACTS_DIR : ' C :\tmp\hermes\hermes-runtime-darwin'
124
+ HERMES_OSXBIN_ARTIFACTS_DIR : ' C :\tmp\hermes\osx-bin'
125
125
ICU_URL : " https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-64_2-Win64-MSVC2017.zip"
126
126
MSBUILD_DIR : ' C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin'
127
127
CMAKE_DIR : ' C:\Program Files\CMake\bin'
Original file line number Diff line number Diff line change @@ -427,9 +427,9 @@ jobs:
427
427
runs-on : windows-2025
428
428
needs : prepare_hermes_workspace
429
429
env :
430
- HERMES_WS_DIR : ' D :\tmp\hermes'
431
- HERMES_TARBALL_ARTIFACTS_DIR : ' D :\tmp\hermes\hermes-runtime-darwin'
432
- HERMES_OSXBIN_ARTIFACTS_DIR : ' D :\tmp\hermes\osx-bin'
430
+ HERMES_WS_DIR : ' C :\tmp\hermes'
431
+ HERMES_TARBALL_ARTIFACTS_DIR : ' C :\tmp\hermes\hermes-runtime-darwin'
432
+ HERMES_OSXBIN_ARTIFACTS_DIR : ' C :\tmp\hermes\osx-bin'
433
433
ICU_URL : " https://github.com/unicode-org/icu/releases/download/release-64-2/icu4c-64_2-Win64-MSVC2017.zip"
434
434
MSBUILD_DIR : ' C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin'
435
435
CMAKE_DIR : ' C:\Program Files\CMake\bin'
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ class OsTest {
55
55
56
56
@Test
57
57
fun unixifyPath_withAWindowsPath_convertsItCorrectly () {
58
- val aWindowsPath = " D :\\ just\\ a\\ windows\\ path\\ "
58
+ val aWindowsPath = " C :\\ just\\ a\\ windows\\ path\\ "
59
59
60
60
assertThat(" /D/just/a/windows/path/" ).isEqualTo(aWindowsPath.unixifyPath())
61
61
}
You can’t perform that action at this time.
0 commit comments