diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-12-19 23:03:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-19 23:03:17 +0100 |
commit | c0eaadac86d318e99d05462eaf6337dd77a54f67 (patch) | |
tree | fc8455f787c2df319841196fe23c062731637875 /.github/workflows | |
parent | 02336831735fd6affbe0a6fa252ec98d3e78120c (diff) | |
parent | e52d4b64862a248e9c6743d42e6bd244c8de2899 (diff) | |
download | redot-cpp-c0eaadac86d318e99d05462eaf6337dd77a54f67.tar.gz |
Merge pull request #903 from PapyChacal/build_library
Make build_library=no usable at godot-cpp's root
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52cc11c..52e22d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -105,6 +105,11 @@ jobs: if: ${{ matrix.platform == 'windows' && matrix.flags == 'use_mingw=yes' }} uses: egor-tensin/setup-mingw@v2 + - name: Generate godot-cpp sources only + run: | + scons platform=${{ matrix.platform }} build_library=no ${{ matrix.flags }} + scons -c + - name: Build godot-cpp (debug) run: | scons platform=${{ matrix.platform }} target=template_debug ${{ matrix.flags }} |