File tree Expand file tree Collapse file tree 1 file changed +33
-3
lines changed
Expand file tree Collapse file tree 1 file changed +33
-3
lines changed Original file line number Diff line number Diff line change 88
99jobs :
1010 build :
11-
1211 runs-on : ubuntu-latest
12+ name : Build and test on the latest Ubuntu
1313
1414 steps :
1515 - uses : actions/checkout@v4
16+
1617 - name : configure
1718 run : ./configure --disable-openssl --enable-gettext --enable-debug=-O0
19+
20+ - name : make
21+ run : make
22+
23+ - name : make test-lib print-info
24+ run : make test-lib print-info
25+
26+ - name : make test-full
27+ run : make test-full
28+
29+ build-powerpc64 :
30+ runs-on : ubuntu-latest
31+ name : Build and test on PowerPC 64
32+
33+ steps :
34+ - uses : actions/checkout@v4
35+
36+ - name : Install dependencies
37+ run : |
38+ sudo apt-get install -y qemu-user-static binfmt-support \
39+ gcc-powerpc64-linux-gnu libc-dev-ppc64-cross
40+
41+ - name : configure
42+ run : |
43+ ./configure --disable-openssl --disable-gettext --enable-static \
44+ --cc=powerpc64-linux-gnu-gcc
45+
1846 - name : make
1947 run : make
20- - name : make test-lib
21- run : make test-lib
48+
49+ - name : make test-lib print-info
50+ run : make test-lib print-info
51+
2252 - name : make test-full
2353 run : make test-full
You can’t perform that action at this time.
0 commit comments