Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/ell-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,25 @@ jobs:

runs-on: ubuntu-latest

strategy:
matrix:
cc: [gcc, clang]

steps:
- uses: actions/checkout@v2
- name: dependencies
run: sudo apt-get -y install autoconf-archive git
run: sudo apt-get -y install autoconf-archive git clang
- name: build and install ELL
run: |
git clone git://git.kernel.org/pub/scm/libs/ell/ell.git
cd ell
./bootstrap
./configure --prefix=/usr
./configure CC=${{ matrix.cc }} --prefix=/usr
sudo make install
- name: bootstrap
run: ./bootstrap
- name: configure
run: ./configure
run: ./configure CC=${{ matrix.cc }}
- name: make
run: make
- name: make check
Expand Down