summaryrefslogtreecommitdiff
path: root/.github/workflows
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
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')
-rw-r--r--.github/workflows/android_builds.yml1
-rw-r--r--.github/workflows/ios_builds.yml1
-rw-r--r--.github/workflows/javascript_builds.disabled1
-rw-r--r--.github/workflows/linux_builds.yml3
-rw-r--r--.github/workflows/macos_builds.yml2
-rw-r--r--.github/workflows/windows_builds.yml2
6 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/android_builds.yml b/.github/workflows/android_builds.yml
index 1c9a8f7f03..14157e4386 100644
--- a/.github/workflows/android_builds.yml
+++ b/.github/workflows/android_builds.yml
@@ -71,3 +71,4 @@ jobs:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons -j2 verbose=yes warnings=all werror=yes platform=android target=release tools=no
+ ls -l bin/
diff --git a/.github/workflows/ios_builds.yml b/.github/workflows/ios_builds.yml
index e6770d384a..a31ae6c918 100644
--- a/.github/workflows/ios_builds.yml
+++ b/.github/workflows/ios_builds.yml
@@ -48,3 +48,4 @@ jobs:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons -j2 verbose=yes warnings=all werror=yes platform=iphone target=release tools=no
+ ls -l bin/
diff --git a/.github/workflows/javascript_builds.disabled b/.github/workflows/javascript_builds.disabled
index c3c51209bd..3a0673b64d 100644
--- a/.github/workflows/javascript_builds.disabled
+++ b/.github/workflows/javascript_builds.disabled
@@ -75,3 +75,4 @@ jobs:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons -j2 verbose=yes warnings=all werror=yes platform=javascript target=release tools=no use_closure_compiler=yes
+ ls -l bin/
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/
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/
diff --git a/.github/workflows/windows_builds.yml b/.github/workflows/windows_builds.yml
index a2fa4cc7c8..b4195ea974 100644
--- a/.github/workflows/windows_builds.yml
+++ b/.github/workflows/windows_builds.yml
@@ -55,6 +55,7 @@ jobs:
SCONS_CACHE: /.scons_cache/
run: |
scons -j2 verbose=yes warnings=all werror=yes platform=windows tools=yes tests=yes target=release_debug
+ ls -l bin/
# Execute unit tests for the editor
- name: Unit Tests
@@ -112,6 +113,7 @@ jobs:
SCONS_CACHE: /.scons_cache/
run: |
scons -j2 verbose=yes warnings=all werror=yes platform=windows target=release tools=no
+ ls -l bin/
# Build Product Upload (tested and working)
# sorry this is disabled until github can give us some more space as we would hit our limit very quickly