Skip to content

Commit 60f511c

Browse files
committed
tree view
1 parent 6804930 commit 60f511c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/builds.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,9 @@ jobs:
7474
env:
7575
SCONS_CACHE: ${{ github.workspace }}/.scons-cache/
7676
run: |
77+
sudo apt-get install tree
7778
pwd
78-
ls
79+
tree
7980
scons target=${{ matrix.target-type }} platform=${{ matrix.target.platform }} arch=${{ matrix.target.arch }} precision=${{ matrix.float-precision }}
8081
8182
# Sign the binary (macOS only)

SConstruct

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ filepath = ""
5555
if env["platform"] == "windows":
5656
env.Append(LIBPATH=["ultralight/lib/"])
5757
elif env["platform"] == "linux":
58+
print("Compiler:", env["CXX"], f"v{env["CXXVERSION"]} -", env["CXXFLAGS"])
5859
env.Append(LIBPATH=["ultralight/bin/linux/"])
5960
elif env["platform"] == "macos" or env["platform"] == "ios":
6061
filepath = "{}.framework/".format(env["platform"])

0 commit comments

Comments
 (0)