Skip to content

Commit ec5cb81

Browse files
committed
test
1 parent 526d648 commit ec5cb81

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
os: [
25-
macos-13, # x64
26-
macos-14, # ARM
27-
ubuntu-latest, # x64
28-
buildjet-2vcpu-ubuntu-2204-arm, # ARM
25+
# macos-13, # x64
26+
# macos-14, # ARM
27+
# ubuntu-latest, # x64
28+
# buildjet-2vcpu-ubuntu-2204-arm, # ARM
2929
windows-latest,
3030
]
3131

src/NewProject.res

+2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ let createProject = async (~templateName, ~projectName, ~versions) => {
6767
await updateRescriptJson(~projectName, ~versions)
6868

6969
await RescriptVersions.installVersions(versions)
70+
Console.log("git init")
7071
let _ = await Promisified.ChildProcess.execFile("git", ["init"])
72+
Console.log("git init done")
7173

7274
s->P.Spinner.stop("Project created.")
7375
}

0 commit comments

Comments
 (0)