File tree 1 file changed +8
-7
lines changed
1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -40,10 +40,11 @@ jobs:
40
40
- uses : actions/checkout@v4
41
41
with :
42
42
fetch-depth : 50
43
+ path : ..
43
44
- name : Clone DMD
44
45
run : |
45
46
set -uexo pipefail
46
- ln -s "$GITHUB_WORKSPACE" ../phobos
47
+ cd ..
47
48
48
49
ref='${{ github.ref }}'
49
50
if [[ "$ref" =~ ^refs/pull/ ]]; then
@@ -61,17 +62,17 @@ jobs:
61
62
62
63
git clone --branch "$REPO_BRANCH" --depth 1 https://github.com/dlang/dmd.git ../dmd
63
64
- name : Install prerequisites
64
- run : cd ../dmd && ${{ runner.os == 'macOS' && 'ci/cirrusci.sh' || 'sudo -E ci/cirrusci.sh' }}
65
+ run : cd ../../ dmd && ${{ runner.os == 'macOS' && 'ci/cirrusci.sh' || 'sudo -E ci/cirrusci.sh' }}
65
66
- name : Install host compiler
66
- run : cd ../dmd && ci/run.sh install_host_compiler
67
+ run : cd ../../ dmd && ci/run.sh install_host_compiler
67
68
- name : Build
68
- run : cd ../dmd && ci/run.sh build
69
+ run : cd ../../ dmd && ci/run.sh build
69
70
- name : Test dmd
70
- run : cd ../dmd && ci/run.sh test_dmd
71
+ run : cd ../../ dmd && ci/run.sh test_dmd
71
72
- name : Test druntime
72
- run : cd ../dmd && ci/run.sh test_druntime
73
+ run : cd ../../ dmd && ci/run.sh test_druntime
73
74
- name : Test phobos
74
- run : cd ../dmd && ci/run.sh test_phobos
75
+ run : cd ../../ dmd && ci/run.sh test_phobos
75
76
76
77
freebsd-vm :
77
78
strategy :
You can’t perform that action at this time.
0 commit comments