Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Static libraries and dependencies #21

Merged
merged 4 commits into from
Jan 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:

env:
GIT_HTTPS: "true"
CI_MERGE_REQUEST_SOURCE_BRANCH_NAME: "${{ github.head_ref }}"

jobs:
code:
Expand Down Expand Up @@ -119,4 +120,3 @@ jobs:
$CODE/scripts/checkout_branch.sh $CODE_BRANCH
make
pip install -e .

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# January 2025
- Switch to static library build

# August 2024
- Adding field module to libneo and clean up build process

Expand Down
1 change: 1 addition & 0 deletions scripts/setup/efit_to_boozer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
set -e

source $CODE/scripts/util.sh
set_branch

echo "Building and installing 'efit_to_boozer'..."
if [ ! -d "efit_to_boozer" ] ; then
Expand Down
1 change: 1 addition & 0 deletions scripts/setup/libneo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
set -e

source $CODE/scripts/util.sh
set_branch

echo "Building and installing 'libneo'..."
if [ ! -d "libneo" ] ; then
Expand Down
Loading