Skip to content

Commit 22cf22e

Browse files
committed
update
1 parent d99e6f0 commit 22cf22e

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

.github/workflows/reusable-release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ jobs:
2323
- name: Get the version
2424
id: get_version
2525
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
26+
- name: Link source Into Workspace
27+
run: |
28+
mkdir -p $HOME/bowler-workspace/gitcache/github.com/${{ github.repository_owner }}/
29+
ln -s . $HOME/bowler-workspace/gitcache/github.com/${{ github.repository_owner }}/
30+
ls -al $HOME/bowler-workspace/gitcache/github.com/
31+
ls -al $HOME/bowler-workspace/gitcache/github.com/${{ github.repository_owner }}/
32+
2633
- name: Install libraries
2734
run: |
2835
sudo apt update

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
/.settings
1+
.settings
22
/.project
33
/.classpath
44
/.cproject
55
/cache/
6-
/*.class
6+
/*.class
7+
/
8+
.settings
9+
/

CI-build-test.groovy

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
import eu.mihosoft.vrl.v3d.CSG
2+
import eu.mihosoft.vrl.v3d.Cylinder
3+
import eu.mihosoft.vrl.v3d.Hexagon
4+
15
CSG simpleSyntax =new Cylinder(10,40).toCSG() // a one line Cylinder
26

37
//create a Cylinder

0 commit comments

Comments
 (0)