@@ -21,14 +21,15 @@ jobs:
2121 - run : cmake -B b -S .
2222 - run : cmake --build b
2323
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
3233
3334 windows-2019 :
3435 runs-on : windows-2019
@@ -51,34 +52,34 @@ jobs:
5152 steps :
5253 - uses : actions/checkout@v2
5354 - 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
5657
5758 macos-11 :
5859 runs-on : macos-11
5960 steps :
6061 - uses : actions/checkout@v2
6162 - 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
6465
65- macos-10_15_ios :
66+ ios_macos-10_15 :
6667 runs-on : macos-10.15
6768 steps :
6869 - uses : actions/checkout@v2
6970 - 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
7172 - run : cmake --build b --config Release --target cpp-tests -- -quiet
7273
73- macos-11_ios :
74+ ios_macos-11 :
7475 runs-on : macos-11
7576 steps :
7677 - uses : actions/checkout@v2
7778 - 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
7980 - run : cmake --build b --config Release --target cpp-tests -- -quiet -destination "platform=iOS Simulator,name=iPhone Retina (4-inch)"
8081
81- windows -2019-android :
82+ android_windows -2019 :
8283 runs-on : windows-2019
8384 steps :
8485 - uses : actions/checkout@v2
8788 shell : bash
8889 working-directory : tests/cpp-tests/proj.android
8990
90- ubuntu -20_04-android :
91+ android_ubuntu -20_04 :
9192 runs-on : ubuntu-20.04
9293 steps :
9394 - uses : actions/checkout@v2
0 commit comments