File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 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"
You can’t perform that action at this time.
0 commit comments