Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-julialib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
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
Code review analytics
Issue 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
caosdb
Software
caosdb-julialib
Commits
58a7858f
Commit
58a7858f
authored
3 years ago
by
florian
Browse files
Options
Downloads
Patches
Plain Diff
FIX: Adapt pipeline for Julia 1.6
parent
c24dc466
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#9504
failed
3 years ago
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+3
-6
3 additions, 6 deletions
.gitlab-ci.yml
with
3 additions
and
6 deletions
.gitlab-ci.yml
+
3
−
6
View file @
58a7858f
...
...
@@ -33,7 +33,7 @@ stages:
script
:
# Let's run the tests. Substitute `coverage = false` below, if you
# do not want coverage results.
-
julia -e 'using Pkg; Pkg.
clone(
pwd());
-
julia -e 'using Pkg; Pkg.
add(path=
pwd());
Pkg.build("CaosDB");
Pkg.test("CaosDB"; coverage =
true
)'
# Comment out below if you do not want coverage results.
...
...
@@ -45,9 +45,6 @@ stages:
# Name a test and select an appropriate image.
# images comes from Docker hub
test:0.7
:
image
:
julia:0.7
<<
:
*test_definition
test:1.0
:
image
:
julia:1.0
<<
:
*test_definition
...
...
@@ -67,11 +64,11 @@ test:1.6:
# Example documentation deployment
pages
:
tags
:
[
cached-dind
]
image
:
julia:1.
0
image
:
julia:1.
6
stage
:
deploy
script
:
-
apt-get update -qq && apt-get install -y git
# needed by Documenter
-
julia -e 'using Pkg; Pkg.
clone(
pwd()); Pkg.build("CaosDB");'
# rebuild Julia (can be put somewhere else I'm sure)
-
julia -e 'using Pkg; Pkg.
add(path=
pwd()); Pkg.build("CaosDB");'
# rebuild Julia (can be put somewhere else I'm sure)
-
julia -e 'using Pkg; import CaosDB; Pkg.add("Documenter")'
# install Documenter
-
julia --color=yes docs/make.jl
# make documentation
-
mv docs/build public
# move to the directory picked up by Gitlab pages
...
...
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