mirror of https://github.com/encounter/SDL.git
workflows: List files installed by CMake
This lets us compare them with Autotools more easily. Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
parent
90da399bbb
commit
85a77fb5fa
|
@ -82,6 +82,13 @@ jobs:
|
||||||
run: cmake -B build -DSDL_TEST=ON ${{ matrix.platform.flags }}
|
run: cmake -B build -DSDL_TEST=ON ${{ matrix.platform.flags }}
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cmake --build build/ --config Release
|
run: cmake --build build/ --config Release
|
||||||
|
- name: Install
|
||||||
|
run: |
|
||||||
|
set -eu
|
||||||
|
cmake --build build/ --config Release
|
||||||
|
rm -fr DESTDIR-cmake
|
||||||
|
DESTDIR=$(pwd)/DESTDIR-cmake cmake --install build/ --config Release
|
||||||
|
( cd DESTDIR-cmake; find ) | LC_ALL=C sort -u
|
||||||
- name: Configure Autotools
|
- name: Configure Autotools
|
||||||
if: runner.os == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue