Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
r2ogs6
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
ogs
OpenGeoSys Tools
r2ogs6
Commits
a0bd921c
Commit
a0bd921c
authored
3 years ago
by
Johannes Boog
Browse files
Options
Downloads
Patches
Plain Diff
[ci] remove singularity installation from pipeline
parent
fcdc1edb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!41
standardize files references during prj import/export (new MR)
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.CI-setup.sh
+0
-42
0 additions, 42 deletions
.CI-setup.sh
with
0 additions
and
42 deletions
.CI-setup.sh
deleted
100644 → 0
+
0
−
42
View file @
fcdc1edb
#!/bin/bash
### Setup singularity ###
# adapted from: https://sylabs.io/guides/3.0/user-guide/installation.html
# install dependencies
apt-get update
apt-get
install
-y
\
build-essential
\
libssl-dev
\
uuid-dev
\
libgpgme11-dev
\
squashfs-tools
\
libseccomp-dev
\
pkg-config
\
wget
# yum update -y && \
# yum groupinstall -y 'Development Tools' && \
# yum install -y \
# openssl-devel \
# libuuid-devel \
# libseccomp-devel \
# wget \
# squashfs-tools
# install go
export
GOVERSION
=
1.15.6
OS
=
linux
ARCH
=
amd64
wget https://dl.google.com/go/go
$GOVERSION
.
$OS
-
$ARCH
.tar.gz
tar
-C
/usr/local
-xzvf
go
$GOVERSION
.
$OS
-
$ARCH
.tar.gz
rm
go
$GOVERSION
.
$OS
-
$ARCH
.tar.gz
# install singularity
export
VERSION
=
3.9.1
mkdir
-p
$GOPATH
/src/github.com/sylabs
cd
$GOPATH
/src/github.com/sylabs
wget https://github.com/sylabs/singularity/releases/download/v
${
VERSION
}
/singularity-ce-
${
VERSION
}
.tar.gz
tar
-xzf
singularity-ce-
${
VERSION
}
.tar.gz
cd
./singularity
./mconfig
make
-C
./builddir
make
-C
./builddir
install
\ No newline at end of file
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