소스 검색

Merge pull request #4748 from IvanSavenko/ci_fix

Quick workaround for failing Android CI
Ivan Savenko 1 년 전
부모
커밋
1fc0267ad1
2개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      .github/workflows/github.yml
  2. 4 0
      lib/networkPacks/SaveLocalState.h

+ 1 - 0
.github/workflows/github.yml

@@ -17,6 +17,7 @@ env:
 jobs:
 jobs:
   build:
   build:
     strategy:
     strategy:
+      fail-fast: false
       matrix:
       matrix:
         include:
         include:
           - platform: linux-qt6
           - platform: linux-qt6

+ 4 - 0
lib/networkPacks/SaveLocalState.h

@@ -13,6 +13,8 @@
 
 
 #include "../json/JsonNode.h"
 #include "../json/JsonNode.h"
 
 
+VCMI_LIB_NAMESPACE_BEGIN
+
 struct DLL_LINKAGE SaveLocalState : public CPackForServer
 struct DLL_LINKAGE SaveLocalState : public CPackForServer
 {
 {
 	JsonNode data;
 	JsonNode data;
@@ -25,3 +27,5 @@ struct DLL_LINKAGE SaveLocalState : public CPackForServer
 		h & data;
 		h & data;
 	}
 	}
 };
 };
+
+VCMI_LIB_NAMESPACE_END