CI
/ test (push) Failing after 11s
Details
/ test (push) Failing after 11s
Details
This commit is contained in:
parent
9c037d440f
commit
538927fce6
|
@ -0,0 +1,15 @@
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: git.hswro.org/fleg/actions-experiments:latest
|
||||||
|
steps:
|
||||||
|
- run: bundle exec jekyll build
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: generated-site
|
||||||
|
path: _site/
|
|
@ -0,0 +1,7 @@
|
||||||
|
FROM fedora:41
|
||||||
|
|
||||||
|
RUN dnf -y upgrade \
|
||||||
|
&& dnf install -y ruby ruby-devel openssl-devel redhat-rpm-config gcc-c++ @development-tools \
|
||||||
|
&& gem install --no-document jekyll -v 4.4.1 \
|
||||||
|
&& gem install --no-document jekyll-environment-variables \
|
||||||
|
&& gem install --no-document webrick -v 1.7
|
Loading…
Reference in New Issue