name: EpicMorg EcoSystem Gitlab Runner Images on: # push: # branches: # - 'master' schedule: - cron: '4 5 * * 2,4,6' jobs: build-glr-main-images: name: Build EpicMorg Gitlab Runner Main Images runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - name: Log into registry run: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin - name: Test Make run: make - name: "Build and Deploy Gitlab Runner Main Image:" run: cd linux/ecosystem/gitlab/runner/latest && pwd && make build && make deploy ################################################################################## build-glr-other-images: name: Build EpicMorg Gitlab Runner Oter Images runs-on: ubuntu-22.04 needs: build-glr-main-images steps: - uses: actions/checkout@v3 - name: Log into registry run: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin - name: Test Make run: make - name: "Build and Deploy Gitlab Runner amxX 1.9 SDK Image:" run: cd linux/ecosystem/gitlab/runner/amxx-sdk/1.9 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner amxX 1.10 SDK Image:" run: cd linux/ecosystem/gitlab/runner/amxx-sdk/1.10 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner Android SDK Image (jdk11):" run: cd linux/ecosystem/gitlab/runner/android-sdk/jdk11 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner Android SDK Image (jdk17):" run: cd linux/ecosystem/gitlab/runner/android-sdk/jdk17 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner Atlassian SDK Image:" run: cd linux/ecosystem/gitlab/runner/atlassian-sdk && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner dotNet SDK Image:" run: cd linux/ecosystem/gitlab/runner/dotnet-sdk && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner node10 Image:" run: cd linux/ecosystem/gitlab/runner/node10 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner node12 Image:" run: cd linux/ecosystem/gitlab/runner/node12 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner node14 Image:" run: cd linux/ecosystem/gitlab/runner/node14 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner node15 Image:" run: cd linux/ecosystem/gitlab/runner/node15 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner node16 Image:" run: cd linux/ecosystem/gitlab/runner/node16 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner node17 Image:" run: cd linux/ecosystem/gitlab/runner/node17 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner node18 Image:" run: cd linux/ecosystem/gitlab/runner/node18 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner node19 Image:" run: cd linux/ecosystem/gitlab/runner/node19 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner node20 Image:" run: cd linux/ecosystem/gitlab/runner/node20 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner php7.2 Image:" run: cd linux/ecosystem/gitlab/runner/php7.2 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner php7.3 Image:" run: cd linux/ecosystem/gitlab/runner/php7.3 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner php7.4 Image:" run: cd linux/ecosystem/gitlab/runner/php7.4 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner php8.0 Image:" run: cd linux/ecosystem/gitlab/runner/php8.0 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner php8.1 Image:" run: cd linux/ecosystem/gitlab/runner/php8.1 && pwd && make build && make deploy - name: "Build and Deploy Gitlab Runner Steam SDK Image:" run: cd linux/ecosystem/gitlab/runner/steam-sdk && pwd && make build && make deploy ################################################################################## - name: Cleanup run: make docker-clean