Skip to content

Commit b163904

Browse files
CI: Add netlrts-linux-i386
1 parent 2da4a6e commit b163904

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: NetLRTS Linux i386
2+
3+
on: pull_request
4+
5+
jobs:
6+
build:
7+
timeout-minutes: 60
8+
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: install-prerequisites
14+
run: |
15+
sudo dpkg --add-architecture i386
16+
sudo apt-get update
17+
sudo apt-get install -y gcc-multilib g++-multilib gfortran-multilib zlib1g-dev:i386 libjpeg-dev:i386
18+
- name: build
19+
run: ./build all-test netlrts-linux-i386 --build-shared --with-production --enable-error-checking --enable-lbuserdata -j3 -g -Werror=vla
20+
# TODO: this should build tests with "-charm-shared". See #2735 on why this is not done currently.
21+
- name: test
22+
run: make -C netlrts-linux-i386/tmp test TESTOPTS="++local"
23+
- name: testp
24+
run: make -C netlrts-linux-i386/tmp testp P=2 TESTOPTS="++local"

0 commit comments

Comments
 (0)