Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
shiny-k8s
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
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
hub
shiny-k8s
Merge requests
!14
Add python
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add python
add-python
into
main
Overview
0
Commits
9
Pipelines
7
Changes
3
Merged
Bryan BRANCOTTE
requested to merge
add-python
into
main
1 year ago
Overview
0
Commits
9
Pipelines
7
Changes
3
Expand
0
0
Merge request reports
Compare
main
version 6
2b83db34
1 year ago
version 5
76e2e724
1 year ago
version 4
e587793f
1 year ago
version 3
83c5d923
1 year ago
version 2
c7397b9e
1 year ago
version 1
6e27d066
1 year ago
main (base)
and
latest version
latest version
963b3673
9 commits,
1 year ago
version 6
2b83db34
8 commits,
1 year ago
version 5
76e2e724
7 commits,
1 year ago
version 4
e587793f
6 commits,
1 year ago
version 3
83c5d923
5 commits,
1 year ago
version 2
c7397b9e
4 commits,
1 year ago
version 1
6e27d066
3 commits,
1 year ago
3 files
+
73
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
14
−
9
Options
@@ -9,15 +9,21 @@ build:
-
echo $CI_REGISTRY_PASSWORD | docker login -u $CI_REGISTRY_USER $CI_REGISTRY --password-stdin
script
:
-
docker --version
-
|
if [ "${LANGUAGE}" == "python" ]; then
LANGUAGE_VERSION="${PYTHON_VERSION}"
else
LANGUAGE_VERSION="${R_VERSION}"
fi
# put both versions in a env var, to be used as tag
-
|
if [ "latest" == "${
R
_VERSION}" ]; then
if [ "latest" == "${
LANGUAGE
_VERSION}" ]; then
export VERSIONS_TAG="${SHINY_SERVER_VERSION}"
else
if [ "latest" == "${SHINY_SERVER_VERSION}" ]; then
export VERSIONS_TAG="${
R
_VERSION}"
export VERSIONS_TAG="${
LANGUAGE
_VERSION}"
else
export VERSIONS_TAG="${
R
_VERSION}--${SHINY_SERVER_VERSION}"
export VERSIONS_TAG="${
LANGUAGE
_VERSION}--${SHINY_SERVER_VERSION}"
fi
fi
-
apk add gettext
@@ -60,15 +66,14 @@ build:
fi
parallel
:
matrix
:
-
R_VERSION
:
[
"
latest"
]
-
LANGUAGE
:
[
"
r"
]
R_VERSION
:
[
"
latest"
]
# R_VERSION: ["3.6.3", "4.2.3", "latest"]
SHINY_SERVER_VERSION
:
[
"
latest"
]
LANGUAGE
:
[
"
r"
]
-
R_VERSION
:
[
"
latest"
]
# R_VERSION: ["3.6.3", "4.2.3", "latest"]
SHINY_SERVER_VERSION
:
[
"
latest"
]
LANGUAGE
:
[
"
python"
]
-
LANGUAGE
:
[
"
python"
]
PYTHON_VERSION
:
[
"
3.9-slim-bullseye"
]
SHINY_SERVER_VERSION
:
[
"
latest"
]
Loading