Skip to content

Commit

Permalink
fixup! ci: drop Circle CI in favor of Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit-pierre committed Dec 14, 2024
1 parent 9bd630b commit 45323d2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,16 @@ jobs:
if: contains('failure success', steps.build.conclusion) && !cancelled()
run: |
set -x
# Trim the build directory.
# Trim the build directory, but keep the staging luajit
# headers (necessary for generating the Android APK).
if [[ '${{ matrix.target }}' == 'android' ]]; then
mv build/staging/include/luajit-2.1 .
fi
rm -rf build/{cmake,staging,thirdparty}
if [[ '${{ matrix.target }}' == 'android' ]]; then
mkdir -p build/staging/include
mv luajit-2.1 build/staging/include/
fi
ccache --cleanup >/dev/null
ccache --show-stats --verbose
Expand Down

0 comments on commit 45323d2

Please sign in to comment.