Missing g++-multilib for workflow github env

This commit is contained in:
Philip Herron 2020-04-13 16:24:10 +01:00 committed by Philip Herron
parent 70137b4ec6
commit 7a6059df73
1 changed files with 46 additions and 0 deletions

46
.github/workflows/ccpp.yml vendored Normal file
View File

@ -0,0 +1,46 @@
name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Deps
run: |
sudo apt-get update;
sudo apt-get install -y \
automake \
autoconf \
libtool \
autogen \
bison \
flex \
libgmp3-dev \
libmpfr-dev \
libmpc-dev \
build-essential \
gcc-multilib \
g++-multilib
- name: Configure
run: |
mkdir -p gccrs-build;
cd gccrs-build;
../configure \
--enable-languages=c,c++,rust \
--disable-bootstrap \
--enable-multilib
- name: Build
run: |
cd gccrs-build; \
make -j2