Skip to content

Commit

Permalink
ci: Also set -Ddefault_library=static for Ubuntu
Browse files Browse the repository at this point in the history
WrapDB's luajit can build both library types, defaulting (as usual) to
shared libraries.

Setting -Ddefault_library=static is not needed for the CI to work, but
users might refer to the CI for how to compile Aegisub locally, and
they'd probably want a statically linked luajit.
  • Loading branch information
arch1t3cht committed Jan 6, 2025
1 parent d896357 commit a40f865
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,25 +43,25 @@ jobs:
name: Ubuntu 22 Debug,
os: ubuntu-22.04,
buildtype: debugoptimized,
args: ''
args: -Ddefault_library=static
}
- {
name: Ubuntu 22 Release,
os: ubuntu-22.04,
buildtype: release,
args: ''
args: -Ddefault_library=static
}
- {
name: Ubuntu 24 Debug,
os: ubuntu-24.04,
buildtype: debugoptimized,
args: ''
args: -Ddefault_library=static
}
- {
name: Ubuntu 24 Release,
os: ubuntu-24.04,
buildtype: release,
args: ''
args: -Ddefault_library=static
}
- {
name: macOS Debug,
Expand Down

0 comments on commit a40f865

Please sign in to comment.