ci: add full-node tests (#920)
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..75b3574
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,202 @@
+pipeline {
+ agent none
+
+ options {
+ disableConcurrentBuilds(abortPrevious: true);
+ }
+
+ // TODO: periodic multi-node jobs
+
+ environment {
+ TEST_REGISTRY = "registry.atmosphere.dev:5000/${env.BRANCH_NAME.toLowerCase()}"
+ PROD_REGISTRY = "ghcr.io/vexxhost/atmosphere"
+ REGISTRY = "${env.BRANCH_NAME == 'main' ? PROD_REGISTRY : TEST_REGISTRY}"
+
+ EARTHLY_CI = 'true'
+ EARTHLY_BUILD_ARGS = "REGISTRY=${REGISTRY}"
+ }
+
+ stages {
+ stage('lint') {
+ parallel {
+ stage('ansible-lint') {
+ agent {
+ label 'earthly'
+ }
+
+ steps {
+ sh 'earthly --output +lint.ansible-lint'
+ }
+
+ post {
+ always {
+ junit testResults: 'ansible-lint.xml', allowEmptyResults: true
+ }
+ }
+ }
+
+ stage('helm') {
+ agent {
+ label 'earthly'
+ }
+
+ steps {
+ sh 'earthly --output +lint.helm'
+ }
+
+ post {
+ always {
+ junit testResults: 'output/junit-helm-*.xml', allowEmptyResults: true
+ }
+ }
+ }
+
+ stage('markdownlint') {
+ agent {
+ label 'earthly'
+ }
+
+ steps {
+ sh 'earthly --output +lint.markdownlint'
+ }
+
+ post {
+ always {
+ junit testResults: 'junit.xml', allowEmptyResults: true
+ }
+ }
+ }
+
+ stage('image-manifest') {
+ agent {
+ label 'earthly'
+ }
+
+ steps {
+ sh 'earthly +lint.image-manifest'
+ }
+ }
+ }
+ }
+
+ stage('unit') {
+ parallel {
+ stage('go') {
+ agent {
+ label 'earthly'
+ }
+
+ steps {
+ sh 'earthly --output +unit.go'
+ }
+
+ post {
+ always {
+ junit 'junit-go.xml'
+ }
+ }
+ }
+ }
+ }
+
+ stage('build') {
+ parallel {
+ stage('collection') {
+ agent {
+ label 'earthly'
+ }
+
+ steps {
+ sh 'earthly --output +build.collection'
+ archiveArtifacts artifacts: 'dist/**'
+ }
+ }
+
+ stage('images') {
+ agent {
+ label 'earthly'
+ }
+
+ steps {
+ script {
+ if (env.BRANCH_NAME == 'main') {
+ docker.withRegistry('https://ghcr.io', 'github-packages-token') {
+ sh 'earthly --push +images'
+ }
+ } else {
+ sh 'earthly --push +images'
+ }
+ }
+
+ sh 'earthly --output +pin-images'
+ sh 'earthly +scan-images'
+ stash name: 'src-with-pinned-images', includes: '**'
+ }
+ }
+
+ stage('docs') {
+ agent {
+ label 'earthly'
+ }
+
+ steps {
+ sh 'earthly +mkdocs-build'
+ }
+ }
+ }
+ }
+
+ stage('integration') {
+ matrix {
+ axes {
+ axis {
+ name 'NETWORK_BACKEND'
+ values 'openvswitch', 'ovn'
+ }
+ }
+
+ agent {
+ label 'jammy-16c-64g'
+ }
+
+ environment {
+ ATMOSPHERE_DEBUG = "true"
+ ATMOSPHERE_NETWORK_BACKEND = "${NETWORK_BACKEND}"
+ }
+
+ stages {
+ stage('molecule') {
+ steps {
+ // Checkout code with built/pinned images
+ unstash 'src-with-pinned-images'
+
+ // Install dependencies
+ sh 'sudo apt-get install -y git python3-pip'
+ sh 'sudo pip install poetry'
+
+ // Run tests
+ sh 'sudo poetry install --with dev'
+ sh 'sudo --preserve-env=ATMOSPHERE_DEBUG,ATMOSPHERE_NETWORK_BACKEND poetry run molecule test -s aio'
+ }
+ }
+ }
+
+ post {
+ always {
+ // Kubernetes logs
+ sh "sudo ./build/fetch-kubernetes-logs.sh logs/${NETWORK_BACKEND}/kubernetes || true"
+ archiveArtifacts artifacts: 'logs/**', allowEmptyArchive: true
+
+ // JUnit results for Tempest
+ sh "sudo ./build/fetch-junit-xml.sh tempest-${NETWORK_BACKEND}.xml || true"
+ junit "tempest-${NETWORK_BACKEND}.xml"
+ }
+ }
+ }
+ }
+
+ // promote images
+ // release?
+ // todo: manual pin commit to main (avoiding loop)
+ }
+}