Skip to content

Commit

Permalink
Revert "Update from ishgroup/willow@f75bced"
Browse files Browse the repository at this point in the history
This reverts commit 32b72c2.
  • Loading branch information
yuryyas committed Oct 2, 2024
1 parent 32b72c2 commit 99c0aa2
Show file tree
Hide file tree
Showing 1,483 changed files with 40,749 additions and 12,858 deletions.
7 changes: 7 additions & 0 deletions .asciidoctorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
:stylesdir: {asciidoctorconfigdir}/src/css
:stylesheet: oncourse.css

:docinfodir: {asciidoctorconfigdir}/src
// for now only include the header and not the footer
// as the footer contains a loading splash screen
:docinfo: shared-head
52 changes: 52 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Asciidoc build

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2

- name: Cache
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: gradle-${{ hashFiles('**/*.gradle*') }}

- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 11

- name: graphviz install
run: sudo apt-get install graphviz

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build
run: ./gradlew distZip

- name: Store release
uses: marvinpinto/action-automatic-releases@latest
if: github.ref == 'refs/heads/main'
with:
automatic_release_tag: "latest"
title: "snapshot"
draft: true
files: |
./manual/build/distributions/manual.zip
./design/build/distributions/design.zip
./web/build/distributions/web.zip
./dsl/build/distributions/dsl.zip
./release-notes/build/distributions/release-notes.zip
repo_token: "${{ secrets.GITHUB_TOKEN }}"
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.svn
build
design/build
dsl/build
release-notes/build
web/build
manual/build
.idea/workspace.xml
**/.DS_Store
.gradle
/node_modules/
.idea/shelf/
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/atlassian-ide-plugin.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/azure/azureSettings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/codeStyleSettings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/copyright/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/cssxfire.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/deployment.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/dictionaries/ari.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

226 changes: 226 additions & 0 deletions .idea/findbugs-idea.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 99c0aa2

Please sign in to comment.