File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -30,14 +30,14 @@ runs:
30
30
shell : bash
31
31
run : |
32
32
# RAM disk for postgres mounted on R:
33
- aim_ll -a -s "50 %" -m R: -p "/fs:ntfs /q /y"
33
+ aim_ll -a -s "20 %" -m R: -p "/fs:ntfs /q /y"
34
34
35
35
# RAM disk for temp files. It's used by actions/cache, actions/setup-go, etc.
36
36
# We need to persist the existing contents because some actions rely on it.
37
37
mkdir "$RUNNER_TEMP"_tmp
38
38
cp -r "$RUNNER_TEMP"/. "$RUNNER_TEMP"_tmp
39
39
rm -rf "$RUNNER_TEMP"/*
40
- aim_ll -a -s "50 %" -m "$RUNNER_TEMP" -p "/fs:ntfs /q /y"
40
+ aim_ll -a -s "20 %" -m "$RUNNER_TEMP" -p "/fs:ntfs /q /y"
41
41
cp -r "$RUNNER_TEMP"_tmp/. "$RUNNER_TEMP"
42
42
rm -rf "$RUNNER_TEMP"_tmp
43
43
46
46
# Use exfat instead of ntfs because ntfs creates an unremovable
47
47
# "System Volume Information" directory that makes actions/checkout fail.
48
48
# exfat is empty on creation
49
- aim_ll -a -s "50 %" -m "$GITHUB_WORKSPACE" -p "/fs:exfat /q /y"
49
+ aim_ll -a -s "20 %" -m "$GITHUB_WORKSPACE" -p "/fs:exfat /q /y"
50
50
# node's fs.promises.readdir used by actions/checkout fails if the
51
51
# directory is empty.
52
52
touch "$GITHUB_WORKSPACE"/dummy.txt
You can’t perform that action at this time.
0 commit comments