File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313 - ' **/*.md'
1414 - ' examples/**'
1515
16+ env :
17+ USE_CCACHE : USE_CCACHE=1
18+
1619concurrency :
1720 group : ${{ github.workflow }}-${{ github.ref }}
1821 cancel-in-progress : true
3033 shell : msys2 {0}
3134 steps :
3235 - uses : actions/checkout@v4
36+ - name : ccache
37+ uses : hendrikmuhs/ccache-action@v1.2.11
38+ with :
39+ # key: ${{ matrix.os }}-${{ matrix.type }}
40+ key : ${{ matrix.msystem }}
3341 - uses : msys2/setup-msys2@v2
3442 with :
3543 cache : true
@@ -42,10 +50,12 @@ jobs:
4250 # wget
4351 pacboy : assimp:p cairo:p curl:p freeglut:p FreeImage:p gcc:p gdb:p glew:p glfw:p glm:p harfbuzz:p libsndfile:p libusb:p libxml2:p mpg123:p nlohmann-json:p ntldd-git:p openal:p opencv:p pkgconf:p pugixml:p rtaudio:p uriparser:p utf8cpp:p zlib:p poco:p
4452 # boost:p tools:p
53+
4554 - name : Install dependencies
4655 run : ./scripts/ci/msys2/install.sh
4756
4857 - name : Build
4958 run : ./scripts/ci/msys2/build.sh
59+
5060 - name : Run tests
5161 run : ./scripts/ci/msys2/run_tests.sh
Original file line number Diff line number Diff line change 4949
5050# Install packages
5151if [[ " ${confirm} " == " yes" ]]; then
52- for pkg in ${packages} ; do
53- pacman -Su --confirm --needed ${pkg}
54- done
52+ pacman -Su --confirm --needed ${packages}
53+ # for pkg in ${packages}; do
54+ # pacman -Su --confirm --needed ${pkg}
55+ # done
5556else
5657 pacman -Su --noconfirm --needed ${packages}
5758fi
You can’t perform that action at this time.
0 commit comments