mirror of
https://github.com/Neargye/magic_enum.git
synced 2026-01-09 23:34:23 +00:00
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [github/codeql-action](https://github.com/github/codeql-action).
Updates `actions/checkout` from 4 to 5
- [Release notes](https://github.com/actions/checkout/releases)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)
Updates `github/codeql-action` from 3.29.7 to 3.29.11
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](51f77329af...3c3833e0f8)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: github-actions
- dependency-name: github/codeql-action
dependency-version: 3.29.11
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: github-actions
...
Signed-off-by: dependabot[bot] <support@github.com>
60 lines
1.7 KiB
YAML
60 lines
1.7 KiB
YAML
name: ubuntu_test_installed_version.yml
|
|
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- main
|
|
|
|
env:
|
|
CTEST_OUTPUT_ON_FAILURE: 1
|
|
CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
|
|
- uses: actions/cache@v4
|
|
with:
|
|
path: "**/cpm_modules"
|
|
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
|
|
|
|
- name: install library
|
|
run: |
|
|
cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release --log-level=DEBUG -DCMAKE_INSTALL_PREFIX=./install_dir
|
|
cmake --build ./build -j$(nproc)
|
|
cmake --install ./build --prefix ./install_dir
|
|
rm -rf build
|
|
|
|
- name: configure with installed version via cmake
|
|
run: CMAKE_PREFIX_PATH="./install_dir" cmake -S. -Bbuild2 -DMAGIC_ENUM_OPT_TEST_INSTALLED_VERSION=1 --log-level=DEBUG
|
|
|
|
- name: build with installed version via cmake
|
|
run: cmake --build build2 --config Debug -j$(nproc) --verbose
|
|
|
|
- name: test
|
|
run: |
|
|
cd build2
|
|
ctest --build-config Debug -j$(nproc)
|
|
|
|
- name: clear
|
|
run: rm -rf build2
|
|
|
|
- name: configure with installed version via pkgconfig
|
|
run: CMAKE_PREFIX_PATH="./install_dir" cmake -S. -Bbuild3 -DMAGIC_ENUM_OPT_TEST_INSTALLED_VERSION_PKGCONFIG=1 -DPKG_CONFIG_USE_CMAKE_PREFIX_PATH=1 --log-level=DEBUG
|
|
|
|
- name: build with installed version via pkgconfig
|
|
run: cmake --build build3 --config Debug -j$(nproc) --verbose
|
|
|
|
- name: test
|
|
run: |
|
|
cd build3
|
|
ctest --build-config Debug -j$(nproc)
|