Skip to content

Commit 9dc4f0d

Browse files
alandefreitassdkrystian
authored andcommittedMay 31, 2023
ci: all workflows support libxml2
closes #218
1 parent 6c5170c commit 9dc4f0d

File tree

4 files changed

+6
-367
lines changed

4 files changed

+6
-367
lines changed
 

‎.github/actions/boost_clone/action.yml

-120
This file was deleted.

‎.github/actions/cmake_run/action.yml

-132
This file was deleted.

‎.github/actions/package_install/action.yml

-112
This file was deleted.

‎.github/workflows/ci.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
matrix:
2525
include:
2626
- { name: "MSVC 14.3 - C++20", os: windows-2022, std: '20', cmake_args: -G "Visual Studio 17 2022" -A x64, github_release: true }
27-
- { name: "GCC 13 - C++20", os: ubuntu-22.04, compiler: gcc, version: 13.1, std: '20', github_release: true, install: "ninja-build"}
28-
- { name: "Clang 16 - C++20", os: ubuntu-22.04, compiler: clang, version: 16, std: 20, install: "libxml2-utils ninja-build" }
27+
- { name: "GCC 13 - C++20", os: ubuntu-22.04, compiler: gcc, version: 13.1, std: '20', github_release: true, install: "openjdk-11-jdk ninja-build" }
28+
- { name: "Clang 16 - C++20", os: ubuntu-22.04, compiler: clang, version: 16, std: 20, install: "openjdk-11-jdk ninja-build" }
2929

3030
name: ${{ matrix.name }}
3131
runs-on: ${{ matrix.os }}
@@ -61,11 +61,13 @@ jobs:
6161
update-ld-library-path: true
6262

6363
- name: Install packages
64-
if: ${{ matrix.install }}
6564
uses: alandefreitas/cpp-actions/package-install@v1.2.1
6665
id: package-install
6766
with:
6867
apt-get: ${{ matrix.install }}
68+
vcpkg: libxml2[tools]
69+
cxx: ${{ steps.setup-cpp.outputs.cxx }}
70+
cc: ${{ steps.setup-cpp.outputs.cc }}
6971

7072
- name: CMake Workflow (C++${{ matrix.std }})
7173
uses: alandefreitas/cpp-actions/cmake-workflow@v1.2.1
@@ -74,6 +76,7 @@ jobs:
7476
cxxstd: ${{ matrix.std }}
7577
cxx: ${{ steps.setup-cpp.outputs.cxx }}
7678
cc: ${{ steps.setup-cpp.outputs.cc }}
79+
toolchain: ${{ steps.package-install.outputs.vcpkg-toolchain }}
7780
generator: Ninja
7881
install-prefix: .local
7982
extra-args: ${{ format('-D LLVM_ROOT="{0}" -D Clang_ROOT="{0}" -D CMAKE_EXPORT_COMPILE_COMMANDS=ON', steps.llvm-install.outputs.llvm-dir || '/usr/local') }}

0 commit comments

Comments
 (0)
Please sign in to comment.