File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ name: run test cases
2
2
3
3
on :
4
4
push :
5
- branches : [master , develop]
5
+ branches : [main , develop]
6
6
pull_request :
7
- branches : [master , develop]
7
+ branches : [main , develop]
8
8
9
9
jobs :
10
10
testing :
11
11
strategy :
12
12
matrix :
13
- os : [ubuntu-22.04, ubuntu-24.04]
13
+ os : [ubuntu-22.04, ubuntu-24.04, ubuntu-24.04-arm ]
14
14
compiler : [gcc, clang]
15
15
16
16
runs-on : ${{ matrix.os }}
@@ -26,10 +26,16 @@ jobs:
26
26
tar zxvf bats-core-1.2.1.tar.gz
27
27
cd bats-core-1.2.1 &&
28
28
sudo ./install.sh /usr/local
29
- - name : install uncrustify
29
+ - name : install uncrustify ${{ runner.arch }} == X64
30
+ # if: runner.arch == "X64"
30
31
run : |
31
32
curl -LO http://launchpadlibrarian.net/516341795/uncrustify_0.72.0+dfsg1-2_amd64.deb
32
33
sudo dpkg -i uncrustify_0.72.0+dfsg1-2_amd64.deb || true
34
+ - name : install uncrustify ${{ runner.arch }} == ARM64
35
+ # if: runner.arch == "ARM64"
36
+ run : |
37
+ curl -LO http://launchpadlibrarian.net/516341795/uncrustify_0.72.0+dfsg1-2_arm64.deb
38
+ sudo dpkg -i uncrustify_0.72.0+dfsg1-2_arm64.deb || true
33
39
- name : build packcc
34
40
run : |
35
41
(
You can’t perform that action at this time.
0 commit comments