Skip to content

Commit 52f1afa

Browse files
committed
jobs updating the website could overtake the data update:w
1 parent d4c11f2 commit 52f1afa

File tree

2 files changed

+21
-19
lines changed

2 files changed

+21
-19
lines changed

.gitlab-ci.yml

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
stages:
33
- processing
44
- core
5-
- finalize
6-
5+
- update_repositories
6+
- documentation
77

88
###################################################################################################
99
variables:
@@ -319,24 +319,10 @@ grid_performance:
319319
untracked: true
320320
paths: [performance.txt]
321321

322-
323322
###################################################################################################
324-
update_website_master:
325-
stage: finalize
326-
trigger:
327-
project: damask/website
328-
branch: master
329-
rules: [if: $CI_COMMIT_BRANCH == 'development']
330-
331-
update_website_3.0:
332-
stage: finalize
333-
trigger:
334-
project: damask/website
335-
branch: '3.0'
336-
rules: [if: $CI_COMMIT_BRANCH == '3.0']
337323

338324
update_statistics:
339-
stage: finalize
325+
stage: update_repositories
340326
tags:
341327
- matesting_bare-metal # could be any runner, needs git and should be fast to set up
342328
dependencies:
@@ -351,7 +337,7 @@ update_statistics:
351337
rules: [if: $CI_COMMIT_BRANCH == 'development']
352338

353339
update_revision:
354-
stage: finalize
340+
stage: update_repositories
355341
tags:
356342
- matesting_bare-metal # could be any runner, needs git and should be fast to set up
357343
script:
@@ -364,3 +350,19 @@ update_revision:
364350
git commit VERSION -m "[skip ci] updated version information after successful test of ${VERSION}"
365351
- if [ ${CI_COMMIT_SHA} == $(git rev-parse HEAD^) ]; then git push --atomic --no-verify origin HEAD:development HEAD:master; fi
366352
rules: [if: $CI_COMMIT_BRANCH == 'development']
353+
354+
###################################################################################################
355+
356+
publish_website_master:
357+
stage: documentation
358+
trigger:
359+
project: damask/website
360+
branch: master
361+
rules: [if: $CI_COMMIT_BRANCH == 'development']
362+
363+
publish_website_3.0:
364+
stage: documentation
365+
trigger:
366+
project: damask/website
367+
branch: '3.0'
368+
rules: [if: $CI_COMMIT_BRANCH == '3.0']

src/OS.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ subroutine get_CWD_C(cwd, stat) bind(C)
6868

6969
implicit none(type,external)
7070
character(kind=C_CHAR), dimension(4096+1), intent(out) :: cwd ! NULL-terminated array
71-
integer(C_INT), intent(out) :: stat
71+
integer(C_INT), intent(out) :: stat
7272
end subroutine get_CWD_C
7373

7474
subroutine get_hostname_C(hostname, stat) bind(C)

0 commit comments

Comments
 (0)