Compare commits

...

9 Commits

Author SHA1 Message Date
Adam Štrauch 07c9d923bb
Fix
Test build / build (push) Failing after 5s Details
2023-11-26 03:24:22 +01:00
Adam Štrauch 047f922fae
Update pipeline
Test build / build (push) Failing after 6s Details
2023-11-26 03:20:00 +01:00
Adam Štrauch ebfc74b9e3
Builder 38
Test build / build-test (push) Failing after 4m48s Details
2023-11-26 03:03:41 +01:00
Adam Štrauch 9bd5aefd76
Build test pipeline
Test build / build-test (push) Failing after 4s Details
2023-11-26 03:02:55 +01:00
Adam Štrauch c397e365dc
Test build pipeline
Test build / build (push) Successful in 57s Details
Image testing / tests (push) Has been cancelled Details
2023-11-26 02:53:10 +01:00
Adam Štrauch 73b5ce09e3
Test pipeline 2023-11-26 02:52:15 +01:00
Adam Štrauch 940d2b7f01
Passenger for Ruby
continuous-integration/drone/push Build is failing Details
2023-11-25 03:00:21 +01:00
Adam Štrauch bef7e0a2c7
2023.12-1 updated versions of all supported techs
continuous-integration/drone/push Build is failing Details
continuous-integration/drone Build is failing Details
2023-11-21 01:05:16 +01:00
Adam Štrauch 488cea48af
Fix redis config
continuous-integration/drone/push Build is failing Details
2023-10-27 00:55:12 +02:00
12 changed files with 124 additions and 110 deletions

View File

@ -4,7 +4,7 @@ name: image building
steps:
- name: build&push squashed image
image: harbor.hq.rosti.cz/library/builder:38
image: harbor.hq.rosti.cz/library/builder:39
environment:
username: robot$rosti+rosti
password:
@ -29,7 +29,7 @@ name: test image
steps:
- name: test build
image: harbor.hq.rosti.cz/library/builder:38
image: harbor.hq.rosti.cz/library/builder:39
environment:
username: robot$rosti+rosti
password:

29
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,29 @@
name: Test build
on:
push:
branches: [ main ]
jobs:
build:
runs-on: [moon, amd64]
container:
image: harbor.hq.rosti.cz/library/builder:38
env:
REPO: harbor.hq.rosti.cz
USERNAME: robot$rosti+rosti
# ports:
# - 80
# volumes:
# - my_docker_volume:/volume_mount
# options: --cpus 1
steps:
- uses: actions/checkout@v4
- name: Test build
run: |
echo "${{ secrets.repo_password }}" | podman login -u $USERNAME --password-stdin $REPO
# task build
# task test

View File

@ -1,14 +0,0 @@
name: Image testing
on:
- push
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: testing
run: |
make build
make test

View File

@ -45,25 +45,29 @@ ENV TERM xterm
WORKDIR /usr/src
ADD build_node.sh /usr/local/bin/build_node.sh
# 2023/08
RUN build_node.sh 16.20.2
RUN build_node.sh 17.9.1
RUN build_node.sh 19.9.0
RUN build_node.sh 18.17.1
RUN build_node.sh 20.5.1
RUN build_node.sh 20.9.0
RUN build_node.sh 21.2.0
## Python
WORKDIR /usr/src
ADD build_python.sh /usr/local/bin/build_python.sh
# 2023/08
RUN build_python.sh 3.9.17
RUN build_python.sh 3.10.12
RUN build_python.sh 3.10.13
RUN build_python.sh 3.11.4
RUN build_python.sh 3.11.6
RUN build_python.sh 3.12.0
## PHP 8
ADD build_php8.sh /usr/local/bin/build_php8.sh
# 2023/08
RUN build_php8.sh 8.1.21
RUN build_php8.sh 8.1.25
RUN build_php8.sh 8.2.7
RUN build_php8.sh 8.2.12
## Ruby
WORKDIR /usr/src
@ -76,6 +80,7 @@ RUN build_ruby.sh 3.2.2
ADD build_deno.sh /usr/local/bin/build_deno.sh
# 2023/08
RUN build_deno.sh 1.36.1
RUN build_deno.sh 1.38.2
#############

View File

@ -1,8 +1,8 @@
# TODO: Unnecessary, remo this file
REPO=harbor.hq.rosti.cz/rosti/runtime
DOCKER=docker
VERSION=2023.08-1
BASEIMAGE=debian:11
VERSION=2023.12-1
BASEIMAGE=debian:12
all: build

View File

@ -3,9 +3,8 @@
version: '3'
vars:
GREETING: Hello, World!
REPO: harbor.hq.rosti.cz/rosti/runtime
VERSION: 2023.08-1
VERSION: 2023.12-1
BASEIMAGE: debian:bookworm
tasks:

View File

@ -18,3 +18,6 @@ cd ruby-$VERSION
./configure --prefix=/opt/techs/ruby-$VERSION
make -j
make install
/opt/techs/ruby-${VERSION}/bin/gem update --system
/opt/techs/ruby-${VERSION}/bin/gem install passenger

File diff suppressed because one or more lines are too long

65
examples/ruby/index.html Normal file

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
[program:app]
command=/srv/bin/primary_tech/ruby app.rb
command=passenger start --port 8000 --log-file /dev/stdout --pid-file /srv/run/passenger.pid
environment=PATH="/srv/bin/primary_tech:/usr/local/bin:/usr/bin:/bin:/srv/.npm-packages/bin"
stopasgroup=true
directory=/srv/app

View File

@ -3,11 +3,11 @@
. ~/.bashrc
# DEFAULT VERSIONS
VERSION_PYTHON="3.11.4"
VERSION_PHP="8.2.7"
VERSION_NODE="18.17.1"
VERSION_PYTHON="3.12.0"
VERSION_PHP="8.2.12"
VERSION_NODE="20.9.0"
VERSION_RUBY="3.2.2"
VERSION_DENO="1.36.1"
VERSION_DENO="1.38.2"
WIDTH=180
HEIGHT=25
@ -110,6 +110,14 @@ function setTech() {
echo ".. app configuration for nginx not found, adding it - please check /srv/conf/nginx.d/app.conf and make sure it fits your code"
fi
if [ "$name" = "ruby" ]; then
mkdir -p /srv/app/public
rm /srv/conf/nginx.d/app.conf
mv /srv/app/index.html /srv/app/public/index.html
rm -rf /srv/conf/nginx.d
rm -f /srv/conf/supervisor.d/nginx.conf
fi
# We load new configuration into supervisor and it's automatically started or restarted if needed
supervisorctl reread
supervisorctl update

View File

@ -2,7 +2,7 @@
mkdir -p /srv/var/redis
mkdir -p /srv/run
cp /opt/conf/redis.conf /srv/conf/
cp /opt/examples/redis/redis.conf /srv/conf/
cat << EOF > /srv/conf/supervisor.d/redis.conf
[program:redis]