Skip to content

Commit

Permalink
chore: bump preconfigured Ruby version from 3.3.4 to 3.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx committed Dec 22, 2024
1 parent 3f5c935 commit 2ce5379
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
workflows: ["add-tag"]
types:
- completed

concurrency:
group: '${{ github.workflow }}-${{ github.job }}-${{ github.head_ref || github.ref_name }}'
cancel-in-progress: true
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- 'alpine-3.17'
package_ruby_ver:
- '3.2.5'
- '3.3.4'
- '3.3.5'
container:
image: ghcr.io/tamatebako/tebako-${{ matrix.container }}:latest

Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
- 'alpine-3.17'
package_ruby_ver:
- '3.2.5'
- '3.3.4'
- '3.3.5'

steps:
- name: Checkout fontist
Expand Down
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ This container is based on Alpine Linux 3.17 (`musl`), offering a smaller image
size. Suitable for those who prefer a minimalistic approach.

Both containers are tailored for Tebako packaging, featuring preinstalled Ruby
environments versions 3.2.5 and 3.3.4.
environments versions 3.2.5 and 3.3.5.


== Using the Tebako containers
Expand Down
6 changes: 3 additions & 3 deletions alpine-3.17.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ ENV CXX=clang++
ENV TEBAKO_PREFIX=/root/.tebako
COPY test /root/test

# Create packaging environment for Ruby 3.3.4, 3.2.5
# Create packaging environment for Ruby 3.3.5, 3.2.5
# Test and "warm up" since initialization is fully finished after the first packaging
RUN gem install tebako && \
tebako setup -R 3.3.4 && \
tebako setup -R 3.3.5 && \
tebako setup -R 3.2.5 && \
tebako press -R 3.3.4 -r /root/test -e tebako-test-run.rb -o ruby-3.3.4-package && \
tebako press -R 3.3.5 -r /root/test -e tebako-test-run.rb -o ruby-3.3.5-package && \
tebako press -R 3.2.5 -r /root/test -e tebako-test-run.rb -o ruby-3.2.5-package && \
rm ruby-*-package

Expand Down
6 changes: 3 additions & 3 deletions ubuntu-20.04.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ RUN /opt/tools/tools.sh install_cmake && \
ENV TEBAKO_PREFIX=/root/.tebako
COPY test /root/test

# Create packaging environment for Ruby 3.3.4, 3.2.5
# Create packaging environment for Ruby 3.3.5, 3.2.5
# Test and "warm up" since initialization is fully finished after the first packaging
RUN gem install tebako && \
tebako setup -R 3.3.4 && \
tebako setup -R 3.3.5 && \
tebako setup -R 3.2.5 && \
tebako press -R 3.3.4 -r /root/test -e tebako-test-run.rb -o ruby-3.3.4-package && \
tebako press -R 3.3.5 -r /root/test -e tebako-test-run.rb -o ruby-3.3.5-package && \
tebako press -R 3.2.5 -r /root/test -e tebako-test-run.rb -o ruby-3.2.5-package && \
rm ruby-*-package

Expand Down

0 comments on commit 2ce5379

Please sign in to comment.