configuration/environments_scripts/central_reverse_proxy/files/home/httpdConf/repo.git/hooks/post-receive
... ...
@@ -12,7 +12,7 @@ COMMAND="sudo service httpd reload"
12 12
MAIN_BRANCH_NAME="main"
13 13
DISPOSABLE_BRANCH_NAME="disposable"
14 14
CENTRAL_BRANCH_NAME="central"
15
-CHECKED_OUT_WORKSPACE_NAME="checked-out" # Assumes it is in the root user.
15
+CHECKED_OUT_WORKSPACE_NAME="checked-out"
16 16
sync_repo() {
17 17
#$1 tag key to use
18 18
#$2 branch to check out
java/com.sap.sailing.declination.test/src/com/sap/sailing/declination/test/NOAADeclinationImportTest.java
... ...
@@ -1,9 +1,11 @@
1 1
package com.sap.sailing.declination.test;
2 2
3 3
import org.junit.jupiter.api.BeforeEach;
4
+import org.junit.jupiter.api.Disabled;
4 5
5 6
import com.sap.sailing.declination.impl.NOAAImporterForTesting;
6 7
8
+@Disabled("US Government Shutdown around 2026-02-04")
7 9
public class NOAADeclinationImportTest extends DeclinationImportTest<NOAAImporterForTesting> {
8 10
@BeforeEach
9 11
public void setUp() {
java/com.sap.sailing.declination.test/src/com/sap/sailing/declination/test/NOAADeclinationServiceTest.java
... ...
@@ -1,9 +1,11 @@
1 1
package com.sap.sailing.declination.test;
2 2
3 3
import org.junit.jupiter.api.BeforeEach;
4
+import org.junit.jupiter.api.Disabled;
4 5
5 6
import com.sap.sailing.declination.impl.NOAAImporter;
6 7
8
+@Disabled("US Government Shutdown around 2026-02-04")
7 9
public class NOAADeclinationServiceTest extends DeclinationServiceTest<NOAAImporter> {
8 10
@Override
9 11
@BeforeEach
java/com.sap.sailing.declination.test/src/com/sap/sailing/declination/test/NOAADeclinationStoreTest.java
... ...
@@ -1,9 +1,11 @@
1 1
package com.sap.sailing.declination.test;
2 2
3 3
import org.junit.jupiter.api.BeforeEach;
4
+import org.junit.jupiter.api.Disabled;
4 5
5 6
import com.sap.sailing.declination.impl.NOAAImporter;
6 7
8
+@Disabled("US Government Shutdown around 2026-02-04")
7 9
public class NOAADeclinationStoreTest extends DeclinationStoreTest<NOAAImporter> {
8 10
@Override
9 11
@BeforeEach
java/com.sap.sailing.declination.test/src/com/sap/sailing/declination/test/NOAASimpleDeclinationTest.java
... ...
@@ -1,9 +1,11 @@
1 1
package com.sap.sailing.declination.test;
2 2
3 3
import org.junit.jupiter.api.BeforeEach;
4
+import org.junit.jupiter.api.Disabled;
4 5
5 6
import com.sap.sailing.declination.impl.NOAAImporter;
6 7
8
+@Disabled("US Government Shutdown around 2026-02-04")
7 9
public class NOAASimpleDeclinationTest extends SimpleDeclinationTest<NOAAImporter> {
8 10
@BeforeEach
9 11
public void setUp() {
java/target/status
... ...
@@ -32,7 +32,7 @@ RESPONSE_STATUS_CODE=$(echo $STATUS | head -n 1 | cut -d ' ' -f 2)
32 32
33 33
echo "AVAILABILITY_STATUS: $RESPONSE_STATUS_CODE" >&2
34 34
echo "AVAILABILITY_DETAILS:" >&2
35
-echo "$STATUS" | grep "^{" | jq .
35
+echo "$STATUS" | grep "^{" | jq -C .
36 36
37 37
if [[ $RESPONSE_STATUS_CODE =~ 2.. ]]; then
38 38
echo "Server $SERVER_NAME is available on $SERVER_PORT" >&2