Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
melaasar committed Jul 16, 2024
1 parent ac6b6ec commit c19d058
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: ./gradlew build

- name: Run generateDocs
run: ./gradlew generateDocs --info
run: ./gradlew generateDocs

- name: Set up Maven
uses: stCarolas/setup-maven@v5
Expand Down
19 changes: 9 additions & 10 deletions io.opencaesar.oml.specification/build.gradle
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
ext.title = 'Oml Textual Language Test'
description = 'Test for Oml textual language'

task copySrc() {
copy {
from 'src/main'
into 'build/bikeshed'
}
copy {
from 'src/v1'
into 'build/bikeshed/v1'
}
task copyBikeshed(type:Copy) {
from 'src/main'
into 'build/bikeshed'
}

task copyV1Bikeshed(type:Copy) {
from 'src/v1'
into 'build/bikeshed/v1'
}

task ecoreToBikeshed(type:io.opencaesar.ecore.bikeshed.Ecore2BikeshedTask, dependsOn: copySrc) {
task ecoreToBikeshed(type:io.opencaesar.ecore.bikeshed.Ecore2BikeshedTask, dependsOn: [copyBikeshed, copyV1Bikeshed]) {
inputFolderPath = file('../io.opencaesar.oml/src/io/opencaesar/oml')
outputFolderPath = file('build/bikeshed')
}
Expand Down

0 comments on commit c19d058

Please sign in to comment.