Check building samples out of tree in a CI job
(cherry picked from commit 8b83e45f0e55309080980d82ab5c70fc010ff219)
This commit is contained in:
parent
1aad7ae9d7
commit
fdd6ad2d16
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
@ -86,6 +86,7 @@ jobs:
|
||||
container: ubuntu:18.04
|
||||
configure_flags: --enable-cxx11 --enable-stl --disable-compat30
|
||||
use_xvfb: true
|
||||
build_out_of_tree_samples: true
|
||||
- name: Ubuntu 20.04 wxGTK 3 with clang
|
||||
runner: ubuntu-20.04
|
||||
compiler: clang++-10
|
||||
@ -374,3 +375,12 @@ jobs:
|
||||
run: |
|
||||
make -C samples/minimal -f makefile.unx clean
|
||||
make -C samples/minimal -f makefile.unx $wxBUILD_ARGS "CXXFLAGS=$wxMAKEFILE_CXXFLAGS" "LDFLAGS=$wxMAKEFILE_LDFLAGS"
|
||||
|
||||
- name: Building samples out of tree
|
||||
if: matrix.build_out_of_tree_samples
|
||||
run: |
|
||||
make -C samples clean
|
||||
for f in $(find samples -name makefile.unx); do
|
||||
mv $f $(dirname $f)/Makefile
|
||||
done
|
||||
make -C samples -k $wxBUILD_ARGS
|
||||
|
Loading…
Reference in New Issue
Block a user