We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a67668 commit 18a3a60Copy full SHA for 18a3a60
Jenkinsfile
@@ -2,21 +2,22 @@ pipeline {
2
agent any
3
4
stages {
5
- stage('Setup') {
+ stage('Install Dependencies') {
6
steps {
7
sh '''
8
apt-get update
9
+ apt-get install -y libsqlite3-dev
10
apt-get install -y curl gnupg apt-transport-https
11
curl -fsSL https://crystal-lang.org/install.sh | bash
12
apt-get install -y crystal
13
crystal --version
14
shards --version || echo "Shards is already bundled with Crystal."
- '''
15
-
+ '''
16
+
17
}
18
19
- stage('Dependencies') {
20
+ stage('Build') {
21
22
sh 'shards install'
23
@@ -28,4 +29,4 @@ pipeline {
28
29
30
31
-}
32
+}
0 commit comments