Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Frama-C Website
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
Frama-C Website
Merge requests
!171
Fix lfs
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix lfs
fix-lfs
into
master
Overview
0
Commits
4
Pipelines
9
Changes
35
Merged
Andre Maroneze
requested to merge
fix-lfs
into
master
2 years ago
Overview
0
Commits
4
Pipelines
9
Changes
35
Expand
0
0
Merge request reports
Viewing commit
ed5049b2
Prev
Next
Show latest version
35 files
+
105
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
35
Search (e.g. *.vue) (Ctrl+P)
ed5049b2
re-add files via lfs
· ed5049b2
Andre Maroneze
authored
2 years ago
.gitlab-ci.yml
+
27
−
13
Options
@@ -16,22 +16,34 @@ cache:
paths
:
-
vendor/ruby
before_script
:
-
ruby -v
# Print out ruby version for debugging
-
gem install bundler -v '2.0.2'
-
bundle install -j $(nproc) --path vendor
-
curl -sL https://deb.nodesource.com/setup_15.x | bash -
-
apt-get install -y nodejs pandoc
-
cd generator
-
chmod +x ./generate
-
curl https://git.frama-c.com/api/v4/projects/780/repository/files/Changelog/raw?ref=master > ../assets/Changelog
-
curl https://git.frama-c.com/api/v4/projects/780/repository/files/src%2Fplugins%2Fe-acsl%2Fdoc%2FChangelog/raw?ref=master >> ../assets/Changelog
-
curl https://git.frama-c.com/api/v4/projects/780/repository/files/src%2Fplugins%2Fwp%2FChangelog/raw?ref=master >> ../assets/Changelog
-
./generate ../assets/Changelog -o ../html/changelog.html
-
cd ..
.build_template
:
&prepare_website_template
before_script
:
-
ruby -v
# Print out ruby version for debugging
-
gem install bundler -v '2.0.2'
-
bundle install -j $(nproc) --path vendor
-
curl -sL https://deb.nodesource.com/setup_15.x | bash -
-
apt-get install -y nodejs pandoc
-
cd generator
-
chmod +x ./generate
-
curl https://git.frama-c.com/api/v4/projects/780/repository/files/Changelog/raw?ref=master > ../assets/Changelog
-
curl https://git.frama-c.com/api/v4/projects/780/repository/files/src%2Fplugins%2Fe-acsl%2Fdoc%2FChangelog/raw?ref=master >> ../assets/Changelog
-
curl https://git.frama-c.com/api/v4/projects/780/repository/files/src%2Fplugins%2Fwp%2FChangelog/raw?ref=master >> ../assets/Changelog
-
./generate ../assets/Changelog -o ../html/changelog.html
-
cd ..
git-lfs
:
stage
:
test
script
:
-
apk update
-
apk add git-lfs
-
git lfs fsck --pointers
tags
:
-
docker
image
:
alpine:3.16
test
:
stage
:
test
<<
:
*prepare_website_template
script
:
-
bundle exec jekyll build -d test --future
artifacts
:
@@ -47,6 +59,7 @@ check-css:
stage
:
css
dependencies
:
-
test
<<
:
*prepare_website_template
script
:
-
npm install -g purify-css
-
cat $(find test -name '*.html') > output.html
@@ -60,6 +73,7 @@ check-css:
pages
:
stage
:
deploy
<<
:
*prepare_website_template
script
:
-
JEKYLL_ENV="production" bundle exec jekyll build -d public --future
artifacts
:
Loading