We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17fabf4 commit 1933de8Copy full SHA for 1933de8
ci/build.sh
@@ -0,0 +1,5 @@
1
+#!/bin/bash
2
+
3
+export TERM=${TERM:-dumb}
4
+cd sources
5
+gradle --no-daemon build
ci/build.yml
@@ -0,0 +1,16 @@
+---
+platform: linux
+image_resource:
+ type: docker-image
6
+ source: {repository: gradle, tag: 7.0.1-jdk16}
7
8
+# Cache the Gradle repository directory
9
+caches:
10
+ - path: $HOME/.gradle
11
12
+inputs:
13
+ - name: sources
14
15
+run:
16
+ path: sources/ci/build.sh
ci/pipeline.yml
@@ -0,0 +1,17 @@
+resources:
+ icon: github
+ type: git
+ source:
+ uri: https://github.com/bee-software/kickstart.git
+ branch: master
+jobs:
+ - name: build
+ public: true
+ plan:
+ - get: sources
+ trigger: true
+ - task: run-build
17
+ file: sources/ci/build.yml
0 commit comments