Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Colibri WebSite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Colibri WebSite
Commits
fd0580fb
Commit
fd0580fb
authored
3 years ago
by
François Bobot
Browse files
Options
Downloads
Patches
Plain Diff
[COLIBRI] colibri is the default branch for colibri website
parent
df458a55
No related branches found
Branches containing commit
No related tags found
2 merge requests
!3
Start the COLIBRI manual in the website
,
!1
Colibri doc
Pipeline
#37259
passed with warnings
3 years ago
Stage: test
Stage: css
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+5
-7
5 additions, 7 deletions
.gitlab-ci.yml
download_doc.sh
+11
-0
11 additions, 0 deletions
download_doc.sh
with
16 additions
and
7 deletions
.gitlab-ci.yml
+
5
−
7
View file @
fd0580fb
...
...
@@ -34,12 +34,13 @@ test:
stage
:
test
script
:
-
bundle exec jekyll build -d test --future
-
./download_doc.sh test
artifacts
:
paths
:
-
test
expire_in
:
1 month
except
:
-
master
-
colibri
tags
:
-
docker
...
...
@@ -54,7 +55,7 @@ check-css:
-
if [ $(grep "PurifyCSS" del-classes.o | wc -l) = 0 ]; then echo "No CSS to clean"; else cat del-classes.o; exit 1; fi;
allow_failure
:
true
except
:
-
master
-
colibri
tags
:
-
docker
...
...
@@ -62,15 +63,12 @@ pages:
stage
:
deploy
script
:
-
JEKYLL_ENV="production" bundle exec jekyll build -d public --future
-
wget -O farith2_doc.tar.gz "https://git.frama-c.com/pub/colibrics/-/jobs/artifacts/master/raw/farith2_doc.tar.gz?job=generate-static:%20[4.12.0]"
-
mkdir -p public/html/doc/
-
tar -C public/html/doc/ -xf farith2_doc.tar.gz
-
mv public/html/doc/farith2 public/html/doc/farith
-
./download_doc.sh public
artifacts
:
paths
:
-
public
expire_in
:
1 month
only
:
-
master
-
colibri
tags
:
-
docker
This diff is collapsed.
Click to expand it.
download_doc.sh
0 → 100755
+
11
−
0
View file @
fd0580fb
#!/bin/sh -eux
ROOT
=
$1
wget
-O
farith2_doc.tar.gz
"https://git.frama-c.com/pub/colibrics/-/jobs/artifacts/master/raw/farith2_doc.tar.gz?job=generate-static:%20[4.12.0]"
mkdir
-p
$ROOT
/html/doc/
tar
-C
$ROOT
/html/doc/
-xf
farith2_doc.tar.gz
mv
$ROOT
/html/doc/farith2
$ROOT
/html/doc/farith
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment