summaryrefslogtreecommitdiff
path: root/.github/workflows/linux_builds.yml
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-10-15 19:50:49 +0200
committerRémi Verschelde <rverschelde@gmail.com>2020-10-15 19:50:49 +0200
commit69e958b48d3e54567efac6687fa1333f9ba96f98 (patch)
treec6959463a9681463572873d992d3694e912ef0fb /.github/workflows/linux_builds.yml
parentea21b8ff83b2c7254a3c6552aedad0c9df7fc48f (diff)
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/linux_builds.yml')
-rw-r--r--.github/workflows/linux_builds.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/linux_builds.yml b/.github/workflows/linux_builds.yml
index 436671dd95..810ade8301 100644
--- a/.github/workflows/linux_builds.yml
+++ b/.github/workflows/linux_builds.yml
@@ -62,6 +62,7 @@ jobs:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons -j2 verbose=yes warnings=all werror=yes platform=linuxbsd tools=yes tests=yes target=release_debug module_mono_enabled=yes mono_glue=no
+ ls -l bin/
# Execute unit tests for the editor
- name: Unit Tests
@@ -123,6 +124,7 @@ jobs:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons -j2 verbose=yes warnings=all werror=yes platform=linuxbsd tools=yes tests=yes target=debug use_asan=yes use_ubsan=yes
+ ls -l bin/
# Execute unit tests for the editor
- name: Unit Tests
@@ -183,3 +185,4 @@ jobs:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons -j2 verbose=yes warnings=all werror=yes platform=linuxbsd target=release tools=no module_mono_enabled=yes mono_glue=no
+ ls -l bin/