@@ -21,14 +21,15 @@ jobs:
21
21
- run : cmake -B b -S .
22
22
- run : cmake --build b
23
23
24
- ubuntu-20_04 :
25
- runs-on : ubuntu-20.04
26
- steps :
27
- - uses : actions/checkout@v2
28
- - run : python download-deps.py --r no
29
- - run : echo -e "y" | bash build/install-deps-linux.sh
30
- - run : cmake -B b -S .
31
- - run : cmake --build b
24
+ # https://github.com/cocos2d/cocos2d-x/issues/20471
25
+ # ubuntu-20_04:
26
+ # runs-on: ubuntu-20.04
27
+ # steps:
28
+ # - uses: actions/checkout@v2
29
+ # - run: python download-deps.py --r no
30
+ # - run: echo -e "y" | bash build/install-deps-linux.sh
31
+ # - run: cmake -B b -S .
32
+ # - run: cmake --build b
32
33
33
34
windows-2019 :
34
35
runs-on : windows-2019
@@ -51,34 +52,34 @@ jobs:
51
52
steps :
52
53
- uses : actions/checkout@v2
53
54
- run : python download-deps.py --r no
54
- - run : cmake -B b -S .
55
- - run : cmake --build b
55
+ - run : cmake -B b -S . -GXcode
56
+ - run : cmake --build b --target cpp-tests
56
57
57
58
macos-11 :
58
59
runs-on : macos-11
59
60
steps :
60
61
- uses : actions/checkout@v2
61
62
- run : python download-deps.py --r no
62
- - run : cmake -B b -S .
63
- - run : cmake --build b
63
+ - run : cmake -B b -S . -GXcode
64
+ - run : cmake --build b --target cpp-tests
64
65
65
- macos-10_15_ios :
66
+ ios_macos-10_15 :
66
67
runs-on : macos-10.15
67
68
steps :
68
69
- uses : actions/checkout@v2
69
70
- run : python download-deps.py --r no
70
- - run : cmake -B b -S . -GXcode -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_SYSROOT=iphonesimulator
71
+ - run : cmake -B b -S . -GXcode -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_SYSROOT=iphonesimulator -DCMAKE_SYSTEM_PROCESSOR=arm64
71
72
- run : cmake --build b --config Release --target cpp-tests -- -quiet
72
73
73
- macos-11_ios :
74
+ ios_macos-11 :
74
75
runs-on : macos-11
75
76
steps :
76
77
- uses : actions/checkout@v2
77
78
- run : python download-deps.py --r no
78
- - run : cmake -B b -S . -GXcode -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_SYSROOT=iphonesimulator
79
+ - run : cmake -B b -S . -GXcode -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_SYSROOT=iphonesimulator -DCMAKE_SYSTEM_PROCESSOR=arm64
79
80
- run : cmake --build b --config Release --target cpp-tests -- -quiet -destination "platform=iOS Simulator,name=iPhone Retina (4-inch)"
80
81
81
- windows -2019-android :
82
+ android_windows -2019 :
82
83
runs-on : windows-2019
83
84
steps :
84
85
- uses : actions/checkout@v2
87
88
shell : bash
88
89
working-directory : tests/cpp-tests/proj.android
89
90
90
- ubuntu -20_04-android :
91
+ android_ubuntu -20_04 :
91
92
runs-on : ubuntu-20.04
92
93
steps :
93
94
- uses : actions/checkout@v2
0 commit comments