Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Commit aaa9567

Browse files
committed
Fix build
1 parent 4375c32 commit aaa9567

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scripts/build

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,15 @@ FCCAHCE_OUT="$BASE_DIR/libreoffice-core/instdir/program/$FCCACHE_FILE"
1010
QA_ENV_DIR="$BASE_DIR/qa-env"
1111

1212
# Add emscripten toolchain
13+
source "$BASE_DIR/emsdk/emsdk_env.sh"
1314
cd "$BASE_DIR/libreoffice-core"
15+
echo "Building LOK"
16+
make || exit 1
17+
if [ "$GITHUB_ACTIONS" = "true" ]; then
18+
echo "Skipping FcCache generation"
19+
else
20+
# Not really, we can do this once and be done with it really
1421
echo "Generating FcCache"
1522
cp "$BASE_DIR/$FCCACHE_FILE" "$FCCAHCE_OUT"
1623
cp "$BASE_DIR/$FCCACHE_FILE$METADATA_SUFFIX" "$FCCAHCE_OUT$METADATA_SUFFIX"
24+
fi

0 commit comments

Comments
 (0)