-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github: use ell from repo by default (#319)
* github: use 'make' with '-j' To accelerate a bit the compilation. Signed-off-by: Matthieu Baerts (NGI0) <[email protected]> * github: use ell from repo by default No need to compile the v0.30 in all tests. Add a specific test to check the compatibility with the minimum version. Signed-off-by: Matthieu Baerts (NGI0) <[email protected]> --------- Signed-off-by: Matthieu Baerts (NGI0) <[email protected]>
- Loading branch information
Showing
5 changed files
with
45 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: ELL min version | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
cc: [gcc, clang] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: dependencies | ||
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 | ||
git checkout 0.30 | ||
./bootstrap | ||
./configure CC=${{ matrix.cc }} --prefix=/usr | ||
sudo make -j$(nproc) install | ||
- name: bootstrap | ||
run: ./bootstrap | ||
- name: configure | ||
run: ./configure CC=${{ matrix.cc }} | ||
- name: make | ||
run: make -j$(nproc) | ||
- name: make check | ||
run: make check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters