-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #972 from vojtechtrefny/master_gh-actions-compilers
ci: Add an action to compile libblockdev with different compilers
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Compilation with different compilers | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
name: compilation | ||
runs-on: ubuntu-22.04 | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
compiler: ['gcc-9', 'gcc-10', 'gcc-11', 'gcc-12', 'gcc-13', | ||
'clang-13', 'clang-14', 'clang-15', 'clang-16', 'clang-17'] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install build dependencies | ||
run: | | ||
sudo apt -y install ansible | ||
ansible-playbook -b -i "localhost," -c local misc/install-test-dependencies.yml -e "test_dependencies=false" | ||
- name: Enable additional repositories (gcc) | ||
run: | | ||
sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa | ||
sudo apt update | ||
- name: Enable additional repositories (clang) | ||
run: | | ||
wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | sudo tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc | ||
echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-16 main" | sudo tee /etc/apt/sources.list.d/llvm.list | ||
echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-17 main" | sudo tee -a /etc/apt/sources.list.d/llvm.list | ||
sudo apt update | ||
- name: Install compiler | ||
run: | | ||
sudo apt -y install ${{ matrix.compiler }} | ||
- name: Configure | ||
run: | | ||
./autogen.sh && CC=${{ matrix.compiler }} ./configure --without-nvme | ||
- name: Make | ||
run: | | ||
make |