Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
Test
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
Fortune Iriaye
Test
Commits
071982b0
Commit
071982b0
authored
10 months ago
by
Matthew K Defenderfer
Browse files
Options
Downloads
Patches
Plain Diff
download installer zip from LTS
parent
9664db5f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+22
-0
22 additions, 0 deletions
.gitlab-ci.yml
Dockerfile
+6
-1
6 additions, 1 deletion
Dockerfile
with
28 additions
and
1 deletion
.gitlab-ci.yml
+
22
−
0
View file @
071982b0
...
...
@@ -6,6 +6,28 @@ default:
-
docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
interruptible
:
true
variables
:
LTS_ENDPOINT
:
$LTS_ENDPOINT
LTS_BUCKET
:
$LTS_BUCKET
LTS_FILE_KEY
:
$LTS_FILE_KEY
stages
:
-
pre-build
-
build
febio-dl
:
image
:
amazon/aws-cli
stage
:
pre-build
script
:
-
apk add --no-cache curl
-
|
URL=$(aws s3 presign s3://$LTS_BUCKET/$LTS_FILE_KEY --endpoint-url $LTS_ENDPOINT --expires-in 600 --profile ceph --region us-east-1 --output text)
echo "Pre-signed URL: $URL"
curl -o febio_installer.zip "$URL"
artifacts
:
paths
:
-
"
installer/"
docker-build
:
stage
:
build
script
:
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
+
6
−
1
View file @
071982b0
FROM
ubuntu:22.04
COPY
FEBioStudio_linux-x64_2.7_FEBio_4.7.run /tmp/FEBioStudio_linux-x64_2.7_FEBio_4.7.run
RUN
apt-get update
&&
\
apt-get
install
-y
\
zip
COPY
./installer/febio_installer.zip /tmp/febio_installer.zip
RUN
unzip /tmp/febio_installer.zip
RUN
chmod
+x /tmp/FEBioStudio_linux-x64_2.7_FEBio_4.7.run
RUN
./tmp/FEBioStudio_linux-x64_2.7_FEBio_4.7.run
...
...
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