Compare commits

...

8 commits
0.2.0 ... main

Author SHA1 Message Date
153fbc4104 ci(jenkins): print current user before trying to make iso
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 03:03:56 -07:00
afe07bd542 ci(jenkins): test another fix
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 03:02:07 -07:00
bbf5604f1c ci(jenkins): continue to adjust to stabilize build
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 02:59:51 -07:00
6d72b547ec bump: version 0.2.0 → 0.3.0 2024-10-06 02:44:19 -07:00
48e06389fb ci(jenkins): finish jenkinsfile
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 02:44:12 -07:00
95ac8cebc9 feat(jenkins): change the output path
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 02:41:15 -07:00
ee790e55ec ci(jenkins): adjust some more build instructions
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 02:39:39 -07:00
b89ccd7458 ci(jenkins): fix build command
Signed-off-by: zontreck <tarapiccari@gmail.com>
2024-10-06 02:35:27 -07:00
4 changed files with 18 additions and 4 deletions

View file

@ -1,3 +1,9 @@
## 0.3.0 (2024-10-06)
### Feat
- **jenkins**: change the output path
## 0.2.0 (2024-10-06) ## 0.2.0 (2024-10-06)
### Feat ### Feat

12
Jenkinsfile vendored
View file

@ -37,10 +37,20 @@ pipeline {
sh ''' sh '''
#!/bin/bash #!/bin/bash
mkarchiso -v -w work -o out server/profiledef.sh echo -ne "I am user "
whoami
mkarchiso -v -w work -o out server
''' '''
} }
} }
post {
always {
archiveArtifacts artifacts: "out/*.iso"
}
}
} }
} }
} }

View file

@ -3,7 +3,7 @@
"name": "cz_conventional_commits", "name": "cz_conventional_commits",
"tag_format": "$version", "tag_format": "$version",
"version_scheme": "semver2", "version_scheme": "semver2",
"version": "0.2.0", "version": "0.3.0",
"update_changelog_on_bump": true, "update_changelog_on_bump": true,
"major_version_zero": true "major_version_zero": true
} }

View file

@ -21,6 +21,4 @@ file_permissions=(
["/root"]="0:0:750" ["/root"]="0:0:750"
["/root/.automated_script.sh"]="0:0:755" ["/root/.automated_script.sh"]="0:0:755"
["/root/.gnupg"]="0:0:700" ["/root/.gnupg"]="0:0:700"
["/usr/local/bin/choose-mirror"]="0:0:755"
["/usr/local/bin/livecd-sound"]="0:0:755"
) )