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