Skip to content
GitLab
Explore
Sign in
prace-lessons
Lesson Template
Compare revisions
29cf274acafabd780f72c296647f24955efb98c6 to 782d8449a9169c85c1e0c786b40b9f4bedee68b9
Commits on Source (2)
Update _config.yml
· eeab1d50
Tünde Emőke Trif
authored
Aug 02, 2021
eeab1d50
Add .gitlab-ci.yml
· 782d8449
Tünde Emőke Trif
authored
Aug 02, 2021
782d8449
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
782d8449
image
:
ruby:2.7.0
variables
:
JEKYLL_ENV
:
production
LC_ALL
:
C.UTF-8
before_script
:
-
gem install bundler
-
bundle install
test
:
stage
:
test
tags
:
-
docker
script
:
-
bundle exec jekyll build -d test
artifacts
:
paths
:
-
test
except
:
-
master
pages
:
tags
:
-
docker
stage
:
deploy
script
:
-
bundle exec jekyll build -d public
artifacts
:
paths
:
-
public
only
:
-
master
_config.yml
View file @
782d8449
...
...
@@ -29,36 +29,36 @@ kind: "lesson"
repository
:
<USERNAME>/<PROJECT>
# Email address, no mailto:
email
:
"
team@carpentries.org"
#
email: "team@carpentries.org"
# Sites.
amy_site
:
"
https://amy.carpentries.org/workshops"
carpentries_github
:
"
https://github.com/carpentries"
carpentries_pages
:
"
https://carpentries.github.io"
carpentries_site
:
"
https://carpentries.org/"
dc_site
:
"
http://datacarpentry.org"
example_repo
:
"
https://
github.com/carpentrie
s/lesson-e
xa
mple"
example_site
:
"
https://
carpentries.github.io
/lesson-example"
lc_site
:
"
https://librarycarpentry.org/"
swc_github
:
"
https://github.com/swcarpentry"
swc_pages
:
"
https://swcarpentry.github.io"
swc_site
:
"
https://software-carpentry.org"
template_repo
:
"
https://github.com/carpentries/styles"
training_site
:
"
https://carpentries.github.io/instructor-training"
workshop_repo
:
"
https://github.com/carpentries/workshop-template"
workshop_site
:
"
https://carpentries.github.io/workshop-template"
cc_by_human
:
"
https://creativecommons.org/licenses/by/4.0/"
#
amy_site: "https://amy.carpentries.org/workshops"
#
carpentries_github: "https://github.com/carpentries"
#
carpentries_pages: "https://carpentries.github.io"
#
carpentries_site: "https://carpentries.org/"
#
dc_site: "http://datacarpentry.org"
example_repo
:
"
https://
repository.prace-ri.eu/git/prace-lesson
s/lesson-
t
empl
at
e"
example_site
:
"
https://
prace-lessons.pages
/lesson-example"
#
lc_site: "https://librarycarpentry.org/"
#
swc_github: "https://github.com/swcarpentry"
#
swc_pages: "https://swcarpentry.github.io"
#
swc_site: "https://software-carpentry.org"
#
template_repo: "https://github.com/carpentries/styles"
#
training_site: "https://carpentries.github.io/instructor-training"
#
workshop_repo: "https://github.com/carpentries/workshop-template"
#
workshop_site: "https://carpentries.github.io/workshop-template"
#
cc_by_human: "https://creativecommons.org/licenses/by/4.0/"
# Surveys.
swc_pre_survey
:
"
https://www.surveymonkey.com/r/swc_pre_workshop_v1?workshop_id="
swc_post_survey
:
"
https://www.surveymonkey.com/r/swc_post_workshop_v1?workshop_id="
training_post_survey
:
"
https://www.surveymonkey.com/r/post-instructor-training"
dc_pre_survey
:
"
https://www.surveymonkey.com/r/dcpreworkshopassessment?workshop_id="
dc_post_survey
:
"
https://www.surveymonkey.com/r/dcpostworkshopassessment?workshop_id="
lc_pre_survey
:
"
https://www.surveymonkey.com/r/lcpreworkshopsurvey?workshop_id="
lc_post_survey
:
"
https://www.surveymonkey.com/r/lcpostworkshopsurvey?workshop_id="
instructor_pre_survey
:
"
https://www.surveymonkey.com/r/instructor_training_pre_survey?workshop_id="
instructor_post_survey
:
"
https://www.surveymonkey.com/r/instructor_training_post_survey?workshop_id="
#
swc_pre_survey: "https://www.surveymonkey.com/r/swc_pre_workshop_v1?workshop_id="
#
swc_post_survey: "https://www.surveymonkey.com/r/swc_post_workshop_v1?workshop_id="
#
training_post_survey: "https://www.surveymonkey.com/r/post-instructor-training"
#
dc_pre_survey: "https://www.surveymonkey.com/r/dcpreworkshopassessment?workshop_id="
#
dc_post_survey: "https://www.surveymonkey.com/r/dcpostworkshopassessment?workshop_id="
#
lc_pre_survey: "https://www.surveymonkey.com/r/lcpreworkshopsurvey?workshop_id="
#
lc_post_survey: "https://www.surveymonkey.com/r/lcpostworkshopsurvey?workshop_id="
#
instructor_pre_survey: "https://www.surveymonkey.com/r/instructor_training_pre_survey?workshop_id="
#
instructor_post_survey: "https://www.surveymonkey.com/r/instructor_training_post_survey?workshop_id="
# Start time in minutes (0 to be clock-independent, 540 to show a start at 09:00 am).
...
...