Skip to content

Commit d868553

Browse files
authored
i#2417 AArch64: Update CMake in .github/workflows/ci-aarchxx*. (#7238)
CMake is updated to 3.26.4, which enables automatic retry of tests on failure. Issue: #2204, #2417 Fixes: #2417
1 parent d2b83c6 commit d868553

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

.github/workflows/ci-aarchxx-cross.yml

+24-4
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- name: Create Build Environment
7474
run: |
7575
sudo apt-get update
76-
sudo apt-get -y install doxygen vera++ cmake g++-aarch64-linux-gnu \
76+
sudo apt-get -y install doxygen vera++ g++-aarch64-linux-gnu \
7777
qemu-user qemu-user-binfmt
7878
sudo add-apt-repository 'deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports focal main'
7979
apt download libunwind8:arm64 libunwind-dev:arm64 liblzma5:arm64 \
@@ -85,6 +85,11 @@ jobs:
8585
sudo rsync -av ../extract/usr/include/ /usr/aarch64-linux-gnu/include/
8686
sudo rsync -av ../extract/lib/aarch64-linux-gnu/ /usr/aarch64-linux-gnu/lib/
8787
88+
- name: Setup cmake
89+
uses: lukka/get-cmake@latest
90+
with:
91+
cmakeVersion: '3.26.4'
92+
8893
- name: Run Suite
8994
working-directory: ${{ github.workspace }}
9095
run: ./suite/runsuite_wrapper.pl automated_ci 64_only
@@ -141,7 +146,7 @@ jobs:
141146
- name: Create Build Environment
142147
run: |
143148
sudo apt-get update
144-
sudo apt-get -y install doxygen vera++ cmake g++-arm-linux-gnueabihf \
149+
sudo apt-get -y install doxygen vera++ g++-arm-linux-gnueabihf \
145150
qemu-user qemu-user-binfmt
146151
sudo add-apt-repository 'deb [arch=armhf] http://ports.ubuntu.com/ubuntu-ports focal main'
147152
apt download libunwind8:armhf libunwind-dev:armhf liblzma5:armhf \
@@ -153,6 +158,11 @@ jobs:
153158
sudo rsync -av ../extract/usr/include/ /usr/arm-linux-gnueabihf/include/
154159
sudo rsync -av ../extract/lib/arm-linux-gnueabihf/ /usr/arm-linux-gnueabihf/lib/
155160
161+
- name: Setup cmake
162+
uses: lukka/get-cmake@latest
163+
with:
164+
cmakeVersion: '3.26.4'
165+
156166
- name: Run Suite
157167
working-directory: ${{ github.workspace }}
158168
run: ./suite/runsuite_wrapper.pl automated_ci 32_only
@@ -206,7 +216,7 @@ jobs:
206216
- name: Create Build Environment
207217
run: |
208218
sudo apt-get update
209-
sudo apt-get -y install doxygen vera++ cmake
219+
sudo apt-get -y install doxygen vera++
210220
cd /tmp
211221
wget https://dl.google.com/android/repository/android-ndk-r10e-linux-x86_64.zip
212222
unzip -q android-ndk-r10e-linux-x86_64.zip
@@ -219,6 +229,11 @@ jobs:
219229
ln -sf arm-linux-androideabi-ld.bfd \
220230
/tmp/android-gcc-arm-ndk-10e/bin/arm-linux-androideabi-ld
221231
232+
- name: Setup cmake
233+
uses: lukka/get-cmake@latest
234+
with:
235+
cmakeVersion: '3.26.4'
236+
222237
- name: Run Suite
223238
working-directory: ${{ github.workspace }}
224239
env:
@@ -272,9 +287,14 @@ jobs:
272287
- name: Create Build Environment
273288
run: |
274289
sudo apt-get update
275-
sudo apt-get -y install doxygen vera++ cmake zlib1g-dev libsnappy-dev \
290+
sudo apt-get -y install doxygen vera++ zlib1g-dev libsnappy-dev \
276291
liblz4-dev
277292
293+
- name: Setup cmake
294+
uses: lukka/get-cmake@latest
295+
with:
296+
cmakeVersion: '3.26.4'
297+
278298
- name: Run Suite
279299
working-directory: ${{ github.workspace }}
280300
run: ./suite/runsuite_wrapper.pl automated_ci

.github/workflows/ci-aarchxx.yml

+5
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,11 @@ jobs:
8585
- name: Create build directory
8686
run: mkdir build
8787

88+
- name: Setup cmake
89+
uses: lukka/get-cmake@latest
90+
with:
91+
cmakeVersion: '3.26.4'
92+
8893
- name: Run Suite
8994
working-directory: build
9095
run: ../suite/runsuite_wrapper.pl travis

0 commit comments

Comments
 (0)