diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-10-15 19:50:49 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-10-15 19:50:49 +0200 |
commit | 69e958b48d3e54567efac6687fa1333f9ba96f98 (patch) | |
tree | c6959463a9681463572873d992d3694e912ef0fb /.github/workflows/macos_builds.yml | |
parent | ea21b8ff83b2c7254a3c6552aedad0c9df7fc48f (diff) | |
download | redot-engine-69e958b48d3e54567efac6687fa1333f9ba96f98.tar.gz |
CI: List contents of bin/ after build
This can be used to compare impacts on the generated files
and especially their size in PRs.
Diffstat (limited to '.github/workflows/macos_builds.yml')
-rw-r--r-- | .github/workflows/macos_builds.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/macos_builds.yml b/.github/workflows/macos_builds.yml index 74b57adaeb..f604456125 100644 --- a/.github/workflows/macos_builds.yml +++ b/.github/workflows/macos_builds.yml @@ -50,6 +50,7 @@ jobs: SCONS_CACHE: ${{github.workspace}}/.scons_cache/ run: | scons -j2 verbose=yes warnings=all werror=yes platform=osx tools=yes tests=yes target=release_debug + ls -l bin/ # Execute unit tests for the editor - name: Unit Tests @@ -97,3 +98,4 @@ jobs: SCONS_CACHE: ${{github.workspace}}/.scons_cache/ run: | scons -j2 verbose=yes warnings=all werror=yes platform=osx target=release tools=no + ls -l bin/ |