Skip to content

Instantly share code, notes, and snippets.

@majorsilence
Created February 13, 2022 22:30
Show Gist options
  • Select an option

  • Save majorsilence/e9b0593530947067786cf0ca969e060b to your computer and use it in GitHub Desktop.

Select an option

Save majorsilence/e9b0593530947067786cf0ca969e060b to your computer and use it in GitHub Desktop.
Zig Jenkins pipeline
pipeline {
agent none
stages {
stage('build and test') {
agent {
docker {
image 'ubuntu:20.04'
args '-u root:root'
}
}
steps {
echo "building"
sh """
apt update
apt install wget xz-utils -y
rm -rf zig
mkdir -p zig
cd zig
wget https://ziglang.org/download/0.9.0/zig-linux-x86_64-0.9.0.tar.xz
tar -xvf ./zig-linux-x86_64-0.9.0.tar.xz
cd ..
zig/zig-linux-x86_64-0.9.0/zig version
zig/zig-linux-x86_64-0.9.0/zig
"""
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment