trying to speedup prepare ruby job
Some checks failed
Deploy Jekyll site to Pages / build (push) Failing after 52s

This commit is contained in:
Florian Weber 2024-11-14 21:30:31 +01:00
parent 74461017d6
commit bd2c517c8d
Signed by: f.weber
GPG Key ID: B162B599E31221C6

View File

@ -42,13 +42,10 @@ jobs:
- name: Setup Ruby - name: Setup Ruby
run: | run: |
apt-get update && \ apt-get update && \
apt-get install wget tar build-essential zlib1g-dev -y && \ apt-get install curl wget tar build-essential zlib1g-dev -y && \
wget https://github.com/postmodern/ruby-install/releases/download/v0.9.3/ruby-install-0.9.3.tar.gz && \ curl -sSL https://get.rvm.io | bash -s stable && \
tar -xzvf ruby-install-0.9.3.tar.gz && \ source /etc/profile.d/rvm.sh && \
cd ruby-install-0.9.3/ && \ rvm install 3.2.0 && \
make install && \
cd .. && \
ruby-install --system ruby 3.3.5 && \
ruby -v && gem -v && \ ruby -v && gem -v && \
gem install bundler jekyll webrick gem install bundler jekyll webrick
- name: Setup Node - name: Setup Node
@ -64,8 +61,8 @@ jobs:
bundle exec jekyll build --destination pages bundle exec jekyll build --destination pages
env: env:
JEKYLL_ENV: production JEKYLL_ENV: production
- name: Test Site # - name: Test Site
run: bash tools/test.sh # run: bash tools/test.sh
- name: push pages - name: push pages
run: | run: |
cd pages && \ cd pages && \