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
36
Merged
Andre Maroneze
requested to merge
fix-lfs
into
master
2 years ago
Overview
0
Commits
4
Pipelines
9
Changes
1
Expand
0
0
Merge request reports
Compare
version 1
version 8
5d8ab2b6
2 years ago
version 7
faa957b7
2 years ago
version 6
8578f3f8
2 years ago
version 5
40a99a0f
2 years ago
version 4
4878d004
2 years ago
version 3
e7a7ec02
2 years ago
version 2
fa703186
2 years ago
version 1
ed5049b2
2 years ago
master (base)
and
version 8
latest version
8868b6f1
4 commits,
2 years ago
version 8
5d8ab2b6
4 commits,
2 years ago
version 7
faa957b7
3 commits,
2 years ago
version 6
8578f3f8
3 commits,
2 years ago
version 5
40a99a0f
3 commits,
2 years ago
version 4
4878d004
3 commits,
2 years ago
version 3
e7a7ec02
3 commits,
2 years ago
version 2
fa703186
3 commits,
2 years ago
version 1
ed5049b2
2 commits,
2 years ago
Show latest version
1 file
+
26
−
13
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.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