-
-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #444 from tkphd/update-workflows
Update Gemfile and fix some typos
- Loading branch information
Showing
20 changed files
with
173 additions
and
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Fram | ||
dropse | ||
figurestyle | ||
hist | ||
namd | ||
rouge |
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,73 @@ | ||
# markdownlint-cli2: | ||
# - Example: <https://github.com/DavidAnson/markdownlint-cli2/blob/main/test/markdownlint-cli2-yaml-example/.markdownlint-cli2.yaml> | ||
# - Rules: <https://github.com/DavidAnson/markdownlint/blob/main/README.md#rules--aliases> | ||
--- | ||
config: | ||
MD001: false # heading-increment | ||
MD002: false # mdl rule undefined | ||
MD003: true # heading-style | ||
MD004: true # ul-style | ||
MD005: true # list-indent | ||
MD006: false # mdl rule undefined | ||
MD007: true # ul-indent | ||
MD008: false # mdl rule undefined | ||
MD009: true # no-trailing-spaces | ||
MD010: true # no-hard-tabs | ||
MD011: true # no-reversed-links | ||
MD012: true # no-multiple-blanks | ||
MD013: false # line-length | ||
MD014: false # commands-show-output | ||
MD015: false # mdl rule undefined | ||
MD016: false # mdl rule undefined | ||
MD017: false # mdl rule undefined | ||
MD018: true # no-missing-space-atx | ||
MD019: true # no-multiple-space-atx | ||
MD020: true # no-missing-space-closed-atx | ||
MD021: true # no-multiple-space-closed-atx | ||
MD022: true # blanks-around-headings | ||
MD023: true # heading-start-left | ||
MD024: false # no-duplicate-heading | ||
MD025: true # single-h1 | ||
MD026: false # no-trailing-punctuation | ||
MD027: false # no-multiple-space-blockquote | ||
MD028: false # no-blanks-blockquote | ||
MD029: true # ol-prefix | ||
MD030: true # list-marker-space | ||
MD031: false # blanks-around-fences | ||
MD032: true # blanks-around-lists | ||
MD033: false # no-inline-html | ||
MD034: true # no-bare-urls | ||
MD035: true # hr-style | ||
MD036: true # no-emphasis-as-heading | ||
MD037: true # no-space-in-emphasis | ||
MD038: true # no-space-in-code | ||
MD039: true # no-space-in-links | ||
MD040: false # fenced-code-language | ||
MD041: false # first-line-h1 | ||
MD042: true # no-empty-links | ||
MD043: false # required-headings | ||
MD044: true # proper-names | ||
MD045: true # no-alt-text | ||
MD046: true # code-block-style | ||
MD047: true # single-trailing-newline | ||
MD048: true # code-fence-style | ||
MD049: false # emphasis-style | ||
MD050: false # strong-style | ||
MD051: true # link-fragments | ||
MD052: true # reference-links-images | ||
MD053: false # link-image-reference-definitions | ||
MD054: false # link-image-style | ||
MD055: true # table-pipe-style | ||
MD056: true # table-column-count | ||
|
||
ignores: | ||
- .vendor | ||
- .bundle | ||
- _extras/figures.md # really HTML | ||
- _includes/links.md # just a list of links | ||
- "**/*.html" | ||
- "**/*.sh" | ||
- "**/*.yaml" | ||
- "**/*.yml" | ||
|
||
# noProgress: true |
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 |
---|---|---|
@@ -1,4 +1,18 @@ | ||
source "https://rubygems.org" | ||
gem "github-pages", group: :jekyll_plugins | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
|
||
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" } | ||
|
||
# Synchronize with https://pages.github.com/versions | ||
ruby '3.0.4' | ||
|
||
gem 'github-pages', group: :jekyll_plugins | ||
|
||
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.0.0') | ||
gem 'webrick', '>= 1.6.1' | ||
end | ||
|
||
gem "kramdown-parser-gfm" | ||
|
||
gem "mdl" |
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
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
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
15 changes: 15 additions & 0 deletions
15
_includes/snippets_library/Birmingham_Baskerville_slurm/parallel/eight-tasks-jobscript.snip
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,15 @@ | ||
``` | ||
{{ site.remote.bash_shebang }} | ||
{{ site.sched.comment }} {{ site.sched.flag.name }} parallel-pi | ||
{{ site.sched.comment }} {{ site.sched.flag.queue }} {{ site.sched.queue.testing }} | ||
{{ site.sched.comment }} -N 1 | ||
{{ site.sched.comment }} -n 8 | ||
{{ site.sched.comment }} --mem=3G | ||
# Load the computing environment we need | ||
module load python3 | ||
# Execute the task | ||
mpiexec amdahl | ||
``` | ||
{: .language-bash} |
15 changes: 15 additions & 0 deletions
15
_includes/snippets_library/Birmingham_Baskerville_slurm/parallel/one-task-jobscript.snip
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,15 @@ | ||
``` | ||
{{ site.remote.bash_shebang }} | ||
{{ site.sched.comment }} {{ site.sched.flag.name }} solo-job | ||
{{ site.sched.comment }} {{ site.sched.flag.queue }} {{ site.sched.queue.testing }} | ||
{{ site.sched.comment }} -N 1 | ||
{{ site.sched.comment }} -n 1 | ||
{{ site.sched.comment }} --mem=3G | ||
# Load the computing environment we need | ||
module load python | ||
# Execute the task | ||
mpiexec amdahl | ||
``` | ||
{: .language-bash} |
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
2 changes: 0 additions & 2 deletions
2
_includes/snippets_library/EPCC_Cirrus_pbs/scheduler/terminate-multiple-jobs.snip
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 |
---|---|---|
@@ -1,2 +0,0 @@ | ||
|
||
|
||
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
Oops, something went wrong.