diff --git a/Jenkinsfile b/Jenkinsfile index b2b702a..ac95a71 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -43,18 +43,12 @@ pipeline dockerfile { filename 'packaging/RHEL9.Dockerfile' } } environment { DOTNET_CLI_HOME = "/tmp/.dotnet" } - when - { - expression - { - return env.BRANCH_NAME == 'main' || env.BRANCH_NAME == 'beta' || env.BRANCH_NAME == 'jenkins-testing'; - } - } steps { sh 'rpmbuild -bb packaging/supportchild.spec --define "_topdir $PWD/.rpmbuild-el9" --define "dev_build true"' - sh 'cp .rpmbuild-el9/RPMS/x86_64/supportchild-dev-*.el9.x86_64.rpm linux-x64/' - archiveArtifacts(artifacts: 'linux-x64/supportchild-dev-*.el9.x86_64.rpm', caseSensitive: true) + sh 'cp .rpmbuild-el9/RPMS/x86_64/supportchild-dev-*.x86_64.rpm linux-x64/' + archiveArtifacts(artifacts: 'linux-x64/supportchild-dev-*.x86_64.rpm', caseSensitive: true) + stash includes: 'linux-x64/supportchild-dev-*.x86_64.rpm', name: 'el9-rpm' } } stage('RHEL8') @@ -64,18 +58,75 @@ pipeline dockerfile { filename 'packaging/RHEL8.Dockerfile' } } environment { DOTNET_CLI_HOME = "/tmp/.dotnet" } - when - { - expression - { - return env.BRANCH_NAME == 'main' || env.BRANCH_NAME == 'beta' || env.BRANCH_NAME == 'jenkins-testing'; - } - } steps { sh 'rpmbuild -bb packaging/supportchild.spec --define "_topdir $PWD/.rpmbuild-el8" --define "dev_build true"' - sh 'cp .rpmbuild-el8/RPMS/x86_64/supportchild-dev-*.el8.x86_64.rpm linux-x64/' - archiveArtifacts(artifacts: 'linux-x64/supportchild-dev-*.el8.x86_64.rpm', caseSensitive: true) + sh 'cp .rpmbuild-el8/RPMS/x86_64/supportchild-dev-*.x86_64.rpm linux-x64/' + archiveArtifacts(artifacts: 'linux-x64/supportchild-dev-*.x86_64.rpm', caseSensitive: true) + stash includes: 'linux-x64/supportchild-dev-*.x86_64.rpm', name: 'el8-rpm' + } + } + stage('Fedora') + { + agent + { + dockerfile { filename 'packaging/Fedora.Dockerfile' } + } + environment { DOTNET_CLI_HOME = "/tmp/.dotnet" } + steps + { + sh 'rpmbuild -bb packaging/supportchild.spec --define "_topdir $PWD/.rpmbuild-fedora" --define "dev_build true"' + sh 'cp .rpmbuild-fedora/RPMS/x86_64/supportchild-dev-*.x86_64.rpm linux-x64/' + archiveArtifacts(artifacts: 'linux-x64/supportchild-dev-*.x86_64.rpm', caseSensitive: true) + stash includes: 'linux-x64/supportchild-dev-*.x86_64.rpm', name: 'fedora-rpm' + } + } + } + } + stage('Deploy') + { + parallel + { + stage('RHEL9') + { + when + { + expression { return env.BRANCH_NAME == 'main' || env.BRANCH_NAME == 'beta'; } + } + steps + { + unstash name: 'el9-rpm' + sh 'mkdir -p /usr/share/nginx/repo.toastiet0ast.com/rhel/el9/packages/supportchild/' + sh 'cp linux-x64/supportchild-dev-*.x86_64.rpm /usr/share/nginx/repo.toastiet0ast.com/rhel/el9/packages/supportchild/' + sh 'createrepo_c --update /usr/share/nginx/repo.toastiet0ast.com/rhel/el9' + } + } + stage('RHEL8') + { + when + { + expression { return env.BRANCH_NAME == 'main' || env.BRANCH_NAME == 'beta'; } + } + steps + { + unstash name: 'el8-rpm' + sh 'mkdir -p /usr/share/nginx/repo.toastiet0ast.com/rhel/el8/packages/supportchild/' + sh 'cp linux-x64/supportchild-dev-*.x86_64.rpm /usr/share/nginx/repo.toastiet0ast.com/rhel/el8/packages/supportchild/' + sh 'createrepo_c --update /usr/share/nginx/repo.toastiet0ast.com/rhel/el8' + } + } + stage('Fedora') + { + when + { + expression { return env.BRANCH_NAME == 'main' || env.BRANCH_NAME == 'beta'; } + } + steps + { + unstash name: 'fedora-rpm' + sh 'mkdir -p /usr/share/nginx/repo.toastiet0ast.com/fedora/packages/supportchild/' + sh 'cp linux-x64/supportchild-dev-*.x86_64.rpm /usr/share/nginx/repo.toastiet0ast.com/fedora/packages/supportchild/' + sh 'createrepo_c --update /usr/share/nginx/repo.toastiet0ast.com/fedora' } } } diff --git a/packaging/Fedora.Dockerfile b/packaging/Fedora.Dockerfile new file mode 100644 index 0000000..68a6e84 --- /dev/null +++ b/packaging/Fedora.Dockerfile @@ -0,0 +1,2 @@ +FROM fedora:latest +RUN dnf install dotnet-sdk-9.0 rpm-build git -y \ No newline at end of file