-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:habi/EAWAG-manuscript into main
- Loading branch information
Showing
5 changed files
with
53 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/usr/bin/env bash | ||
|
||
## install.sh: run during an AppVeyor build to install the conda environment | ||
## and the optional Pandoc spellcheck dependencies. | ||
|
||
# Set options for extra caution & debugging | ||
set -o errexit \ | ||
-o pipefail | ||
|
||
wget https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-$(uname)-$(uname -m).sh \ | ||
--output-document miniforge.sh | ||
bash miniforge.sh -b -p $HOME/miniconda | ||
source $HOME/miniconda/etc/profile.d/conda.sh | ||
hash -r | ||
conda config \ | ||
--set always_yes yes \ | ||
--set changeps1 no | ||
mamba env create --quiet --file build/environment.yml | ||
mamba list --name manubot | ||
conda activate manubot | ||
|
||
# Install Spellcheck filter for Pandoc | ||
if [ "${SPELLCHECK:-}" = "true" ]; then | ||
bash ci/install-spellcheck.sh | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters