Created
February 13, 2022 22:30
-
-
Save majorsilence/e9b0593530947067786cf0ca969e060b to your computer and use it in GitHub Desktop.
Zig Jenkins pipeline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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