Test fix, parallel procesing of Node.js builds
Some checks failed
Test build / build (push) Failing after 24m43s

This commit is contained in:
Adam Štrauch 2025-01-19 16:00:07 +01:00
parent d462f6c091
commit 6c7c6f80fb
Signed by: cx
GPG key ID: 7262DAFE292BCE20
4 changed files with 12 additions and 12 deletions

View file

@ -27,7 +27,7 @@ jobs:
run: echo "TAG_NAME=${{ github.event.inputs.version }}" >> $GITHUB_ENV run: echo "TAG_NAME=${{ github.event.inputs.version }}" >> $GITHUB_ENV
- name: Final build - name: Final build
run: | run: |
docker login gitea.ceperka.net -u "${{ secrets.HARBOR_HQ_REPO_USERNAME }}" -p "${{ secrets.HARBOR_HQ_REPO_PASSWORD }}" docker login gitea.ceperka.net -u "${{ secrets.HARBOR_REPO_USERNAME }}" -p "${{ secrets.HARBOR_REPO_PASSWORD }}"
task squashed REPO=harbor.hq.rosti.cz/rosti/runtime VERSION=${{ env.TAG_NAME }} task squashed REPO=harbor.rosti.cz/rosti/runtime VERSION=${{ env.TAG_NAME }}
task push REPO=harbor.hq.rosti.cz/rosti/runtime VERSION=${{ env.TAG_NAME }} task push REPO=harbor.rosti.cz/rosti/runtime VERSION=${{ env.TAG_NAME }}

View file

@ -13,7 +13,7 @@ jobs:
run: | run: |
# echo "${{ secrets.repo_password }}" | podman login -u $USERNAME --password-stdin $REPO # echo "${{ secrets.repo_password }}" | podman login -u $USERNAME --password-stdin $REPO
docker login gitea.ceperka.net -u "${{ secrets.REPO_USERNAME }}" -p "${{ secrets.REPO_PASSWORD }}" docker login gitea.ceperka.net -u "${{ secrets.REPO_USERNAME }}" -p "${{ secrets.REPO_PASSWORD }}"
task pipeline REPO=harbor.hq.rosti.cz/rosti/runtime/rosti/runtime VERSION=pipeline task pipeline REPO=gitea.ceperka.net/rosti/runtime VERSION=pipeline

View file

@ -51,11 +51,11 @@ ENV TERM xterm
# From https://nodejs.org/en/about/previous-releases # From https://nodejs.org/en/about/previous-releases
WORKDIR /usr/src WORKDIR /usr/src
ADD build_node.sh /usr/local/bin/build_node.sh ADD build_node.sh /usr/local/bin/build_node.sh
RUN build_node.sh 18.20.5 RUN build_node.sh 18.20.5 & \
RUN build_node.sh 20.18.1 build_node.sh 20.18.1 & \
RUN build_node.sh 21.7.3 build_node.sh 21.7.3 & \
RUN build_node.sh 22.13.0 build_node.sh 22.13.0 & \
RUN build_node.sh 23.6.0 build_node.sh 23.6.0
## Python ## Python
# https://www.python.org/downloads/ # https://www.python.org/downloads/
@ -81,8 +81,8 @@ RUN build_ruby.sh 3.4.1
## Deno ## Deno
# From: https://github.com/denoland/deno/releases # From: https://github.com/denoland/deno/releases
ADD build_deno.sh /usr/local/bin/build_deno.sh ADD build_deno.sh /usr/local/bin/build_deno.sh
RUN build_deno.sh 1.46.3 RUN build_deno.sh 1.46.3 & \
RUN build_deno.sh 2.1.6 build_deno.sh 2.1.6
# Bun # Bun
# From here: https://bun.sh/ # From here: https://bun.sh/

View file

@ -3,7 +3,7 @@
version: '3' version: '3'
vars: vars:
REPO: harbor.hq.rosti.cz/rosti/runtime REPO: harbor.hq.rosti.cz
REPO_PUBLIC: rosti/runtime REPO_PUBLIC: rosti/runtime
VERSION: 2025.01-1 VERSION: 2025.01-1
BASEIMAGE: debian:bookworm BASEIMAGE: debian:bookworm