We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f4cc72 commit 5b4b9d3Copy full SHA for 5b4b9d3
github-build.sh
@@ -1,7 +1,15 @@
1
#!/bin/bash
2
3
+# Fix ownership of /app
4
+chown -R myuser:myuser /app
5
+
6
+# Ensure HOME is set correctly for sdkman
7
+export HOME=/home/myuser
8
9
+# Source sdkman initialization script
10
source "$HOME/.sdkman/bin/sdkman-init.sh"
11
12
+# Build and test commands
13
dotnet build Antlr/
14
dotnet build parseStg2/
15
dotnet build "asn1scc.sln"
@@ -12,6 +20,6 @@ cd v4Tests || exit 1
20
../regression/bin/Debug/net9.0/regression -l c -ws 8 -s true -p 12 || exit 1
21
../regression/bin/Debug/net9.0/regression -l Ada -ws 8 -s true -p 12 || exit 1
22
-#scala tests
23
+# Scala tests
16
24
cd ../PUSCScalaTest || exit 1
17
25
dotnet test || exit 1
0 commit comments