File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Src/Scripts/TutorialsChecker Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 19
19
with :
20
20
java-version : 11
21
21
- name : Install P as a tool
22
- run : dotnet tool install --global p
22
+ run : ./Bld/build.sh
23
23
- name : Compile Tutorials
24
24
run : ./Src/Scripts/TutorialsChecker/compile.sh ./Tutorial
25
25
- name : Check Tutorials
Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ for folder in $folders; do
22
22
echo " ------------------------------------------------------"
23
23
24
24
checkLog=" check.log"
25
- p check -i ${SCHEDULES} 2>&1 | tee ${checkLog}
25
+ alias pl=' dotnet /Bld/Drops/Release/Binaries/net8.0/p.dll'
26
+ pl check -i ${SCHEDULES} 2>&1 | tee ${checkLog}
26
27
if grep -q " Possible options are:" ${checkLog} ; then
27
28
beginFlag=false
28
29
while IFS=" " read firstWord _; do
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ for folder in $folders; do
18
18
echo " ------------------------------------------------------"
19
19
echo " Compiling $folder !"
20
20
echo " ------------------------------------------------------"
21
-
22
- p compile
21
+ alias pl= ' dotnet /Bld/Drops/Release/Binaries/net8.0/p.dll '
22
+ pl compile
23
23
24
24
# Check and print any errors
25
25
if [ $? -ne 0 ]; then
You can’t perform that action at this time.
0 commit comments