Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Use the official Jekyll container to build the site
Using a container makes it much easier to ensure consistency between different developer environments, and even avoids devs needing to setup an environment and deal with dependency issues. - Update the README to describe how to test locally using the Jekyll container - Update GitHub Actions to use the official Jekyll container - Update GitHub Actions to run on pull requests, but with the publish step skipped, so that PRs can test that everything builds correctly before being merged - Commit the Gemfile.lock file to freeze dependency versions - Remove asciidoc descriptions for blockdiag, seqdiag, actdiag, and netdiag. The dependencies for these diagrams aren't easily added to the Jekyll container, we don't use any of them, and there is no obvious benefit to them over PlantUML or GraphViz DAFFODIL-2595
- Loading branch information
1 parent
9a8b0ef
commit 456ee18b44ea3ef76a97425c59310e0f42889503
Showing
7 changed files
with
121 additions
and
155 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
@@ -0,0 +1 @@ | ||
graphviz |
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
@@ -13,8 +13,5 @@ | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
Gemfile.lock | ||
target | ||
.jekyll-cache/ | ||
.idea/ | ||
daffodil-site.iml |
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
@@ -0,0 +1,79 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
addressable (2.8.0) | ||
public_suffix (>= 2.0.2, < 5.0) | ||
asciidoctor (2.0.16) | ||
asciidoctor-diagram (2.2.1) | ||
asciidoctor (>= 1.5.7, < 3.x) | ||
asciidoctor-diagram-ditaamini (~> 1.0) | ||
asciidoctor-diagram-plantuml (~> 1.2021) | ||
rexml | ||
asciidoctor-diagram-ditaamini (1.0.1) | ||
asciidoctor-diagram-plantuml (1.2021.8) | ||
colorator (1.1.0) | ||
concurrent-ruby (1.1.9) | ||
em-websocket (0.5.3) | ||
eventmachine (>= 0.12.9) | ||
http_parser.rb (~> 0) | ||
eventmachine (1.2.7) | ||
ffi (1.15.4) | ||
forwardable-extended (2.6.0) | ||
http_parser.rb (0.8.0) | ||
i18n (1.8.11) | ||
concurrent-ruby (~> 1.0) | ||
jekyll (4.2.1) | ||
addressable (~> 2.4) | ||
colorator (~> 1.0) | ||
em-websocket (~> 0.5) | ||
i18n (~> 1.0) | ||
jekyll-sass-converter (~> 2.0) | ||
jekyll-watch (~> 2.0) | ||
kramdown (~> 2.3) | ||
kramdown-parser-gfm (~> 1.0) | ||
liquid (~> 4.0) | ||
mercenary (~> 0.4.0) | ||
pathutil (~> 0.9) | ||
rouge (~> 3.0) | ||
safe_yaml (~> 1.0) | ||
terminal-table (~> 2.0) | ||
jekyll-asciidoc (3.0.0) | ||
asciidoctor (>= 1.5.0) | ||
jekyll (>= 3.0.0) | ||
jekyll-sass-converter (2.1.0) | ||
sassc (> 2.0.1, < 3.0) | ||
jekyll-watch (2.2.1) | ||
listen (~> 3.0) | ||
kramdown (2.3.1) | ||
rexml | ||
kramdown-parser-gfm (1.1.0) | ||
kramdown (~> 2.0) | ||
liquid (4.0.3) | ||
listen (3.7.0) | ||
rb-fsevent (~> 0.10, >= 0.10.3) | ||
rb-inotify (~> 0.9, >= 0.9.10) | ||
mercenary (0.4.0) | ||
pathutil (0.16.2) | ||
forwardable-extended (~> 2.6) | ||
public_suffix (4.0.6) | ||
rb-fsevent (0.11.0) | ||
rb-inotify (0.10.1) | ||
ffi (~> 1.0) | ||
rexml (3.2.5) | ||
rouge (3.26.1) | ||
safe_yaml (1.0.5) | ||
sassc (2.4.0) | ||
ffi (~> 1.9) | ||
terminal-table (2.0.0) | ||
unicode-display_width (~> 1.1, >= 1.1.1) | ||
unicode-display_width (1.8.0) | ||
|
||
PLATFORMS | ||
x86_64-linux-musl | ||
|
||
DEPENDENCIES | ||
asciidoctor-diagram (= 2.2.1) | ||
jekyll-asciidoc (= 3.0.0) | ||
|
||
BUNDLED WITH | ||
2.2.24 |
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