Skip to content

Commit 3d2cc28

Browse files
authored
Merge pull request #39 from EOSC-synergy/release/v2.0
Release/v2.0
2 parents c293ab8 + 80b1786 commit 3d2cc28

Some content is hidden

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

57 files changed

+4473
-4320
lines changed

.appveyor.yml

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# See https://www.appveyor.com/docs/getting-started-with-appveyor-for-linux/
2+
# Don't build branches with a PR, since their build will be created with the PR itself.
3+
# Otherwise there would be two builds -- one for the PR and one for the branch.
4+
# If you're having issues with getting your PR to build, make sure there are no merge conflicts.
5+
skip_branch_with_pr: true
6+
7+
# Enable 'Do not build on "Push" events' in the AppVeyor project settings
8+
# to only build commits from pull requests
9+
branches:
10+
only:
11+
- main
12+
- master
13+
14+
# Only run AppVeyor on commits that modify at least one of the following files
15+
# Delete these lines to run AppVeyor on all main/master branch commits
16+
only_commits:
17+
files:
18+
- .appveyor.yml
19+
- build/
20+
- ci/install.sh
21+
- content/
22+
23+
image: ubuntu
24+
services:
25+
- docker
26+
27+
# Set SPELLCHECK to true to enable Pandoc spellchecking
28+
environment:
29+
SPELLCHECK: true
30+
31+
install:
32+
# Create the message with the triggering commit before install so it is
33+
# available if the build fails
34+
- TRIGGERING_COMMIT=${APPVEYOR_PULL_REQUEST_HEAD_COMMIT:-APPVEYOR_REPO_COMMIT}
35+
- JOB_MESSAGE=" for commit $TRIGGERING_COMMIT "
36+
- source ci/install.sh
37+
38+
test_script:
39+
- bash build/build.sh
40+
- MANUSCRIPT_FILENAME=manuscript-$APPVEYOR_BUILD_VERSION-${TRIGGERING_COMMIT:0:7}
41+
- cp output/manuscript.html $MANUSCRIPT_FILENAME.html
42+
- cp output/manuscript.pdf $MANUSCRIPT_FILENAME.pdf
43+
- appveyor PushArtifact $MANUSCRIPT_FILENAME.html
44+
- appveyor PushArtifact $MANUSCRIPT_FILENAME.pdf
45+
- |
46+
if [ "${SPELLCHECK:-}" = "true" ]; then
47+
SPELLING_ERRORS_FILENAME=spelling-errors-$APPVEYOR_BUILD_VERSION-${TRIGGERING_COMMIT:0:7}.txt
48+
cp output/spelling-errors.txt $SPELLING_ERRORS_FILENAME
49+
appveyor PushArtifact $SPELLING_ERRORS_FILENAME
50+
SPELLING_ERROR_LOCATIONS_FILENAME=spelling-error-locations-$APPVEYOR_BUILD_VERSION-${TRIGGERING_COMMIT:0:7}.txt
51+
cp output/spelling-error-locations.txt $SPELLING_ERROR_LOCATIONS_FILENAME
52+
appveyor PushArtifact $SPELLING_ERROR_LOCATIONS_FILENAME
53+
fi
54+
55+
build: off
56+
57+
cache:
58+
- ci/cache
59+
60+
on_success:
61+
- echo "Artifacts available from $APPVEYOR_URL/project/$APPVEYOR_ACCOUNT_NAME/$APPVEYOR_PROJECT_SLUG/builds/$APPVEYOR_BUILD_ID/artifacts"
62+
- echo "Updated PDF available from $APPVEYOR_URL/api/buildjobs/$APPVEYOR_JOB_ID/artifacts/$MANUSCRIPT_FILENAME.pdf"
63+
- appveyor AddMessage "$JOB_MESSAGE is now complete."
64+
- |
65+
if [ "${SPELLCHECK:-}" = "true" ]; then
66+
SPELLING_ERROR_COUNT=($(wc -l $SPELLING_ERROR_LOCATIONS_FILENAME))
67+
appveyor AddMessage " <details><summary>Found $SPELLING_ERROR_COUNT potential spelling error(s). Preview:</summary>$(head -n 100 $SPELLING_ERROR_LOCATIONS_FILENAME)"
68+
appveyor AddMessage "... </details>"
69+
fi
70+
71+
on_failure:
72+
- appveyor AddMessage "$JOB_MESSAGE failed."
73+
74+
# The following lines can be safely deleted, which will disable AppVeyorBot
75+
# notifications in GitHub pull requests
76+
# Notifications use Mustache templates http://mustache.github.io/mustache.5.html
77+
# See https://www.appveyor.com/docs/notifications/#customizing-message-template
78+
# for available variables
79+
notifications:
80+
- provider: GitHubPullRequest
81+
template: "AppVeyor [build {{buildVersion}}]({{buildUrl}})
82+
{{#jobs}}{{#messages}}{{{message}}}{{/messages}}{{/jobs}}
83+
{{#passed}}The rendered manuscript from this build is temporarily available for download at:\n\n
84+
{{#jobs}}{{#artifacts}}- [`{{fileName}}`]({{permalink}})\n{{/artifacts}}{{/jobs}}{{/passed}}"

.github/workflows/manubot.yaml

+39-10
Original file line numberDiff line numberDiff line change
@@ -2,42 +2,71 @@ name: Manubot
22
on:
33
push:
44
branches:
5+
- main
56
- master
67
pull_request:
78
branches:
9+
- main
810
- master
11+
workflow_dispatch:
12+
inputs:
13+
BUILD_PDF:
14+
description: generate PDF output (true or false)
15+
default: "true"
16+
BUILD_DOCX:
17+
description: generate DOCX output (true or false)
18+
default: "false"
19+
BUILD_LATEX:
20+
description: generate LaTeX output (true or false)
21+
default: "false"
922
jobs:
1023
manubot:
1124
name: Manubot
1225
runs-on: ubuntu-latest
1326
env:
1427
GITHUB_PULL_REQUEST_SHA: ${{ github.event.pull_request.head.sha }}
28+
SPELLCHECK: true
1529
steps:
16-
- name: Set Environment Variables
17-
run: |
18-
TRIGGERING_SHA=${GITHUB_PULL_REQUEST_SHA:-$GITHUB_SHA}
19-
TRIGGERING_SHA_7=${TRIGGERING_SHA::7}
20-
echo "::set-env name=TRIGGERING_SHA_7::$TRIGGERING_SHA_7"
21-
echo "TRIGGERING_SHA: $TRIGGERING_SHA"
2230
- name: Checkout Repository
2331
uses: actions/checkout@v2
2432
with:
2533
# fetch entire commit history to support get_rootstock_commit
2634
fetch-depth: 0
35+
- name: Set Environment Variables (Workflow Dispatch)
36+
if: github.event_name == 'workflow_dispatch'
37+
run: |
38+
echo "BUILD_PDF=${{ github.event.inputs.BUILD_PDF }}" >> $GITHUB_ENV
39+
echo "BUILD_DOCX=${{ github.event.inputs.BUILD_DOCX }}" >> $GITHUB_ENV
40+
echo "BUILD_LATEX=${{ github.event.inputs.BUILD_LATEX }}" >> $GITHUB_ENV
41+
- name: Set Environment Variables
42+
run: |
43+
TRIGGERING_SHA=${GITHUB_PULL_REQUEST_SHA:-$GITHUB_SHA}
44+
echo "TRIGGERING_SHA_7=${TRIGGERING_SHA::7}" >> $GITHUB_ENV
45+
echo "TRIGGERING_SHA: $TRIGGERING_SHA"
46+
DEFAULT_BRANCH=$(git remote show origin | grep --perl-regexp --only-matching "(?<=HEAD branch: ).+")
47+
echo "DEFAULT_BRANCH=${DEFAULT_BRANCH}" >> $GITHUB_ENV
48+
echo "DEFAULT_BRANCH_REF=refs/heads/$DEFAULT_BRANCH" >> $GITHUB_ENV
49+
echo "DEFAULT_BRANCH=$DEFAULT_BRANCH"
2750
- name: Cache
2851
uses: actions/cache@v1
2952
with:
3053
path: ci/cache
3154
key: ci-cache-${{ github.ref }}
3255
restore-keys: |
33-
ci-cache-refs/heads/master
56+
ci-cache-${{ env.DEFAULT_BRANCH_REF }}
3457
- name: Install Environment
35-
uses: goanpeca/setup-miniconda@v1
58+
uses: conda-incubator/setup-miniconda@v2
3659
with:
3760
activate-environment: manubot
3861
environment-file: build/environment.yml
3962
auto-activate-base: false
4063
miniconda-version: 'latest'
64+
- name: Install Spellcheck
65+
shell: bash --login {0}
66+
run: |
67+
if [ "${SPELLCHECK:-}" = "true" ]; then
68+
bash ci/install-spellcheck.sh
69+
fi
4170
- name: Build Manuscript
4271
shell: bash --login {0}
4372
run: bash build/build.sh
@@ -47,11 +76,11 @@ jobs:
4776
name: manuscript-${{ github.run_id }}-${{ env.TRIGGERING_SHA_7 }}
4877
path: output
4978
- name: Deploy Manuscript
50-
if: github.ref == 'refs/heads/master' && github.event_name == 'push' && !github.event.repository.fork
79+
if: github.ref == env.DEFAULT_BRANCH_REF && github.event_name != 'pull_request' && !github.event.repository.fork
5180
env:
5281
MANUBOT_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5382
MANUBOT_SSH_PRIVATE_KEY: ${{ secrets.MANUBOT_SSH_PRIVATE_KEY }}
5483
CI_BUILD_WEB_URL: https://github.com/${{ github.repository }}/commit/${{ github.sha }}/checks
55-
CI_JOB_WEB_URL: https://github.com/${{ github.repository }}/runs/${{ github.run_id }}
84+
CI_JOB_WEB_URL: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
5685
shell: bash --login {0}
5786
run: bash ci/deploy.sh

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ webpage/v
1111
# Manubot cache directory
1212
ci/cache
1313

14+
# Pandoc filters downloaded during continuous integration setup
15+
build/pandoc/filters/spellcheck.lua
16+
1417
# Python
1518
__pycache__/
1619
*.pyc

.travis.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
dist: trusty
2+
sudo: false
3+
language: generic
4+
services:
5+
- docker
6+
branches:
7+
only:
8+
- main
9+
- master
10+
env:
11+
- SPELLCHECK=true
12+
install:
13+
- source ci/install.sh
14+
script:
15+
- bash build/build.sh
16+
cache:
17+
directories:
18+
- ci/cache
19+
deploy:
20+
provider: script
21+
script: bash ci/deploy.sh
22+
skip_cleanup: true
23+
on:
24+
# branch kept as master since travis deployment is legacy.
25+
branch: master
26+
condition: $TRAVIS_EVENT_TYPE = "push" && (-v MANUBOT_SSH_PRIVATE_KEY || "${!encrypted_*}" != "")

README.md

+62
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,69 @@ Please check our [contribution](CONTRIBUTING.md) guide.
4343

4444
## Copyright Notice
4545

46+
<<<<<<< HEAD
4647
Copyright © Members of the EOSC-Synergy collaborations, 2019-2020.
48+
=======
49+
### Repository directories & files
50+
51+
The directories are as follows:
52+
53+
+ [`content`](content) contains the manuscript source, which includes markdown files as well as inputs for citations and references.
54+
See [`USAGE.md`](USAGE.md) for more information.
55+
+ [`output`](output) contains the outputs (generated files) from Manubot including the resulting manuscripts.
56+
You should not edit these files manually, because they will get overwritten.
57+
+ [`webpage`](webpage) is a directory meant to be rendered as a static webpage for viewing the HTML manuscript.
58+
+ [`build`](build) contains commands and tools for building the manuscript.
59+
+ [`ci`](ci) contains files necessary for deployment via continuous integration.
60+
61+
### Local execution
62+
63+
The easiest way to run Manubot is to use [continuous integration](#continuous-integration) to rebuild the manuscript when the content changes.
64+
If you want to build a Manubot manuscript locally, install the [conda](https://conda.io) environment as described in [`build`](build).
65+
Then, you can build the manuscript on POSIX systems by running the following commands from this root directory.
66+
67+
```sh
68+
# Activate the manubot conda environment (assumes conda version >= 4.4)
69+
conda activate manubot
70+
71+
# Build the manuscript, saving outputs to the output directory
72+
bash build/build.sh
73+
74+
# At this point, the HTML & PDF outputs will have been created. The remaining
75+
# commands are for serving the webpage to view the HTML manuscript locally.
76+
# This is required to view local images in the HTML output.
77+
78+
# Configure the webpage directory
79+
manubot webpage
80+
81+
# You can now open the manuscript webpage/index.html in a web browser.
82+
# Alternatively, open a local webserver at http://localhost:8000/ with the
83+
# following commands.
84+
cd webpage
85+
python -m http.server
86+
```
87+
88+
Sometimes it's helpful to monitor the content directory and automatically rebuild the manuscript when a change is detected.
89+
The following command, while running, will trigger both the `build.sh` script and `manubot webpage` command upon content changes:
90+
91+
```sh
92+
bash build/autobuild.sh
93+
```
94+
95+
### Continuous Integration
96+
97+
Whenever a pull request is opened, CI (continuous integration) will test whether the changes break the build process to generate a formatted manuscript.
98+
The build process aims to detect common errors, such as invalid citations.
99+
If your pull request build fails, see the CI logs for the cause of failure and revise your pull request accordingly.
100+
101+
When a commit to the `main` branch occurs (for example, when a pull request is merged), CI builds the manuscript and writes the results to the [`gh-pages`](https://github.com/manubot/rootstock/tree/gh-pages) and [`output`](https://github.com/manubot/rootstock/tree/output) branches.
102+
The `gh-pages` branch uses [GitHub Pages](https://pages.github.com/) to host the following URLs:
103+
104+
+ **HTML manuscript** at https://manubot.github.io/rootstock/
105+
+ **PDF manuscript** at https://manubot.github.io/rootstock/manuscript.pdf
106+
107+
For continuous integration configuration details, see [`.github/workflows/manubot.yaml`](.github/workflows/manubot.yaml) if using GitHub Actions or [`.travis.yml`](.travis.yml) if using Travis CI.
108+
>>>>>>> 9a448fe6edb477fb98065d5b83d206b1ca489cee
47109
48110
## License
49111

0 commit comments

Comments
 (0)