Skip to content

Commit 8626932

Browse files
authored
Merge branch 'main' into clean
2 parents 746e576 + 1a35e72 commit 8626932

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+83
-57
lines changed

scripts/checkout_branch.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
BRANCH_NAME="${1:-main}" # Default branch name is "main"
44

scripts/clone_all.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
GITHUB_REPOS="libneo spline BOOZER_MAGFIE SIMPLE GORILLA GORILLA_APPLETS NEO-2 NEO-RT MEPHIT KAMEL"
44

scripts/docker_build_push_all.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
$CODE/images/base/cross_build_push.sh
33
$CODE/images/devel/cross_build_push.sh
44
$CODE/images/devel-tex/cross_build_push.sh

scripts/machines/init_viper.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
module load gcc/14
44
module load openmpi/4.1

scripts/machines/setup_viper.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
source $CODE/machines/init_viper.sh
44

scripts/reset.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
cd $( dirname "${BASH_SOURCE[0]}" )
44

scripts/setup.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -e
44

scripts/setup/archlinux.sh

+1-11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Update the system
44
pacman -Syu --noconfirm
@@ -28,8 +28,6 @@ pacman -S --noconfirm --needed \
2828
gettext \
2929
bash-completion
3030

31-
#!/bin/bash
32-
3331
# Install additional tools (skip already installed ones)
3432
pacman -S --noconfirm --needed \
3533
procps-ng \
@@ -50,8 +48,6 @@ pacman -S --noconfirm --needed \
5048
gdb \
5149
findutils
5250

53-
#!/bin/bash
54-
5551
# Install development libraries (skip already installed ones)
5652
pacman -S --noconfirm --needed \
5753
pkgconf \
@@ -89,13 +85,9 @@ pacman -S --noconfirm --needed \
8985
# Use yay or another AUR helper to install these:
9086
# yay -S metis parmetis scotch petsc slepc scalapack triangle-bin hdf5-cpp-fortran netcdf-fortran
9187

92-
#!/bin/bash
93-
9488
# Install Octave and gnuplot (skip already installed ones)
9589
pacman -S --noconfirm --needed octave gnuplot
9690

97-
#!/bin/bash
98-
9991
# Install TeX Live and related tools (skip already installed ones)
10092
pacman -S --noconfirm --needed \
10193
texlive-core \
@@ -123,8 +115,6 @@ if [ -n "$(ls /tmp/fmt* 2>/dev/null)" ]; then
123115
cat /tmp/fmt*
124116
fi
125117

126-
#!/bin/bash
127-
128118
# Install fonts (skip already installed ones)
129119
pacman -S --noconfirm --needed \
130120
texlive-fontsextra \

scripts/setup/chease.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -e
44
if [ ! -d "CHEASE" ] ; then

scripts/setup/compiler_intel.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
echo "Setting up Intel compiler..."
33

44
# download the key to system keyring
@@ -29,7 +29,7 @@ then
2929
echo $MOD_FILE
3030
echo -e 'g/^module-whatis \"Version:/d\nw\nq' | sudo ed $MOD_FILE
3131
echo -e 'g/^module-whatis \"Dependencies:/d\nw\nq' | sudo ed $MOD_FILE
32-
echo -e 'g/^module-whatis \"URL:/d\nw\nq' | sudo ed $MOD_FILE
32+
echo -e 'g/^module-whatis \"URL:/d\nw\nq' | sudo ed $MOD_FILE
3333
done
3434
else
3535
echo "## ENVIRONMENT Modules - where is the config directory?"

scripts/setup/compiler_nvidia.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
echo "Setting up NVIDIA compiler..."
44

scripts/setup/debian.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
set -e
33

44
# src: https://stackoverflow.com/a/246128/16527499

scripts/setup/debian/base.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
apt-get install -y -q --no-install-recommends \
44
file \

scripts/setup/debian/desktop.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
apt install i3 fuse nextcloud-desktop gnupg fonts-noto-color-emoji
44

scripts/setup/debian/fonts.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
apt-get install -y -q --no-install-recommends \
44
texlive-fonts-recommended \

scripts/setup/debian/interactive.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
apt-get install -y -q --no-install-recommends \
44
procps \

scripts/setup/debian/libs.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
apt-get install -y -q --no-install-recommends \
44
pkg-config \

scripts/setup/debian/octave.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
apt-get install -y -q --no-install-recommends octave gnuplot

scripts/setup/debian/texlive.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
apt-get install -y -q --no-install-recommends \
44
texlive-latex-base \

scripts/setup/devcontainer.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#/bin/bash
1+
#!/usr/bin/env bash
22

33
export GIT_HTTPS=1
44
export CODE_TEMPLATE=/usr/local/src/code_template

scripts/setup/fgsl.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
if [ ! -d "fgsl-1.6.0" ] ; then
44
echo "Fetching and building FGSL..."

scripts/setup/focus.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
#
33
# https://princetonuniversity.github.io/FOCUS/
44
#

scripts/setup/gpec.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
echo "Setting up GPEC..."
44
echo "Upstream code access: https://princetonuniversity.github.io/GPEC/developers.html"

scripts/setup/gvec.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
echo "Setting up GVEC..."
44

scripts/setup/kamel.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
cd external
33
echo "Building Slatec..."
44
mkdir slatec

scripts/setup/lazygit.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
install_lazygit() {
44
if ! command -v lazygit &>/dev/null; then

scripts/setup/lfortran.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
sudo --validate || exit 1
44
sudo apt update && sudo apt install -y --no-install-recommends llvm-dev

scripts/setup/libneo.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -e
44

scripts/setup/mac.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
44

scripts/setup/mars.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -e
44
module load nvhpc/24.1

scripts/setup/mephit.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -e
44
source /etc/profile.d/modules.sh

scripts/setup/mfem.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
if [ ! -d "mfem-4.7" ] ; then
44
echo "Fetching and building MFEM..."

scripts/setup/neort.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -e
44
echo "Building and installing NEO-RT..."
@@ -32,4 +32,4 @@ pushd build
3232
cmake ..
3333
make
3434
popd
35-
popd
35+
popd

scripts/setup/netcdf.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
export FFLAGS=-fPIC
44
export CFLAGS=-fPIC

scripts/setup/nodejs.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# installs nvm (Node Version Manager)
44
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
@@ -15,4 +15,3 @@ node -v # should print `v20.15.0`
1515

1616
# verifies the right NPM version is in the environment
1717
npm -v # should print `10.7.0`
18-

scripts/setup/omfit.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
echo "Setting up OMFIT..."
44
echo "Requires personal Git access to OMFIT repository."

scripts/setup/omfit/init_conda.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Manually deactivate any existing venv
44
if [[ -n "$VIRTUAL_ENV" ]]; then

scripts/setup/sbgeom.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
#!/bin/bash
2+
#!/usr/bin/env bash
33
#
44
# Setup for SBGeom - A simple package for creating blanket geometries
55
# derived from Fourier Surfaces. Package author: Timo Bogaarts, TU Eindhoven

scripts/setup/simsopt.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
#!/bin/bash
2+
#!/usr/bin/env bash
33

44
if [ ! -d "simsopt" ] ; then
55
echo "Fetching and building simsopt..."

scripts/setup/stellopt.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
if [ ! -d "STELLOPT" ] ; then
44
echo "Fetching and building STELLOPT..."

scripts/setup/triangle.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
CC=${CC:-gcc}
44

scripts/setup/venv.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
if command -v python3 &> /dev/null; then
44
PYTHON=$(command -v python3)

scripts/setup/vmec2000.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
#!/bin/bash
2+
#!/usr/bin/env bash
33

44
if [ ! -d "VMEC2000" ] ; then
55
echo "Fetching and building VMEC2000..."

scripts/templates/condor_script/exec_test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
echo -e "\nExecutable: $0 "
44
echo -e "Job number : $1 \n"

shell.nix

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
with (import <nixpkgs> {});
2+
mkShell {
3+
buildInputs = [
4+
# Base
5+
curl
6+
wget
7+
git
8+
openssh
9+
cmake
10+
ninja
11+
gcc
12+
gfortran
13+
mpi
14+
15+
# Libs
16+
openblas
17+
suitesparse
18+
hdf5
19+
hdf5-fortran
20+
netcdf
21+
netcdffortran
22+
fftw
23+
24+
# Interactive
25+
coreutils
26+
which
27+
less
28+
vim
29+
lazygit
30+
];
31+
32+
shellHook = ''
33+
export CC=gcc
34+
export CXX=g++
35+
export FC=gfortran
36+
'';
37+
}

0 commit comments

Comments
 (0)