@@ -4,46 +4,20 @@ on: [push, pull_request]
4
4
5
5
# Cancel any preceding run on the pull request.
6
6
concurrency :
7
- group : actuated -test-${{ github.event.pull_request.number || github.ref }}
7
+ group : aarch64 -test-${{ github.event.pull_request.number || github.ref }}
8
8
cancel-in-progress : ${{ github.ref != 'refs/heads/criu-dev' }}
9
9
10
10
jobs :
11
11
build :
12
- # Actuated runners are not available in all repositories.
13
- if : ${{ github.repository == 'checkpoint-restore/criu' }}
14
- # The memory size and the number of CPUs can be freely selected for
15
- # the actuated runners. 3GB and 4 CPUs seems to be enough according to the
16
- # result from 'vmmeter'.
17
- runs-on : ${{ matrix.os }}
12
+ runs-on : ubuntu-24.04-arm
18
13
strategy :
19
- fail-fast : false
20
14
matrix :
21
- os : [actuated-arm64-4cpu-3gb, ubuntu-24.04-arm]
22
15
target : [GCC=1, CLANG=1]
23
16
24
17
steps :
25
- # https://gist.github.com/alexellis/1f33e581c75e11e161fe613c46180771#file-metering-gha-md
26
- # vmmeter start
27
- - name : Prepare arkade
28
- if : ${{ matrix.os == 'actuated-arm64-4cpu-3gb' }}
29
- uses : alexellis/arkade-get@master
30
- with :
31
- crane : latest
32
- print-summary : false
33
-
34
- - name : Install vmmeter
35
- if : ${{ matrix.os == 'actuated-arm64-4cpu-3gb' }}
36
- run : |
37
- crane export --platform linux/arm64 ghcr.io/openfaasltd/vmmeter:latest | sudo tar -xvf - -C /usr/local/bin
38
-
39
- - name : Run vmmeter
40
- if : ${{ matrix.os == 'actuated-arm64-4cpu-3gb' }}
41
- uses : self-actuated/vmmeter-action@master
42
- # vmmeter end
43
-
44
18
- uses : actions/checkout@v4
45
- - name : Run Tests ${{ matrix.target }}/${{ matrix.os }}
46
- # Following tests are failing on the actuated VMs:
19
+ - name : Run Tests ${{ matrix.target }}
20
+ # Following tests are failing on the VMs:
47
21
# ./change_mnt_context --pidfile=change_mnt_context.pid --outfile=change_mnt_context.out
48
22
# 45: ERR: change_mnt_context.c:23: mount (errno = 22 (Invalid argument))
49
23
#
0 commit comments