Skip to content

Commit

Permalink
build from source
Browse files Browse the repository at this point in the history
  • Loading branch information
kyh committed Apr 10, 2021
1 parent ce4df1e commit d000d2f
Show file tree
Hide file tree
Showing 1,521 changed files with 115,759 additions and 9,033 deletions.
6 changes: 6 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Browsers that we support

> 1%
IE 11
not dead
not op_mini all
69 changes: 69 additions & 0 deletions .circleci/build-and-publish-docs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
#!/bin/bash

# Set directory to location of this script
# https://stackoverflow.com/a/3355423/1867984
cd "$(dirname "$0")"

yarn -v
node -v

echo 'Installing Gitbook CLI'

yarn global bin
yarn config get prefix
yarn config set prefix ~/.yarn
export PATH="$PATH:`yarn global bin`"

echo 'Running Gitbook installation'

# Generate all version's GitBook output
# For each directory in /docs ...
cd ./../docs/
for D in *; do
if [ -d "${D}" ]; then

echo "Generating output for: ${D}"
cd "${D}"

# Clear previous output, generate new
rm -rf _book
gitbook install
gitbook build

cd ..

fi
done

# Move CNAME File into `latest`
cp CNAME ./latest/_book/CNAME

# Create a history folder in our latest version's output
mkdir ./latest/_book/history

# Move each version's files to latest's history folder
for D in *; do
if [ -d "${D}" ]; then
if [ "${D}" == v* ] ; then

echo "Moving ${D} to the latest version's history folder"

mkdir "./latest/_book/history/${D}"
cp -v -r "./${D}/_book"/* "./latest/_book/history/${D}"

fi
fi
done

# Back to repo root
cd ..

echo "Done generating documentation output"
echo 'STARTING PUBLISH'

# WILL ALWAYS FAIL IF INITIATED FROM PR BRANCH
npx gh-pages \
--silent \
--repo https://$GITHUB_TOKEN@github.com/OHIF/Viewers.git \
--message 'Autogenerated Message: [ci skip]' \
--dist docs/latest/_book
Loading

0 comments on commit d000d2f

Please sign in to comment.