Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs-feliks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Feliks Kiszkurno
ogs-feliks
Commits
30acc54a
Unverified
Commit
30acc54a
authored
11 months ago
by
Lars Bilke
Browse files
Options
Downloads
Patches
Plain Diff
[web] Removed bugfix branch.
parent
be19a75b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+0
-3
0 additions, 3 deletions
.gitlab-ci.yml
web/content/docs/devguide/advanced/offline-build/index.md
+7
-7
7 additions, 7 deletions
web/content/docs/devguide/advanced/offline-build/index.md
web/layouts/releases/list.html
+0
-21
0 additions, 21 deletions
web/layouts/releases/list.html
with
7 additions
and
31 deletions
.gitlab-ci.yml
+
0
−
3
View file @
30acc54a
...
...
@@ -49,9 +49,6 @@ workflow:
-
if
:
'
$CI_COMMIT_BRANCH
==
$CI_DEFAULT_BRANCH
&&
$CI_PROJECT_PATH
==
"ogs/ogs"'
# master, ogs/ogs repo only
variables
:
PIPELINE_NAME
:
"
master
pipeline"
-
if
:
'
$CI_COMMIT_BRANCH
=~
/^v[0-9]\.[0-9]\.[0-9]/
&&
$CI_PROJECT_PATH
==
"ogs/ogs"'
# release branches, e.g. v6.x.x
variables
:
PIPELINE_NAME
:
"
bugfix
branch
$CI_COMMIT_BRANCH
pipeline"
include
:
-
local
:
"
scripts/ci/extends/*.yml"
...
...
This diff is collapsed.
Click to expand it.
web/content/docs/devguide/advanced/offline-build/index.md
+
7
−
7
View file @
30acc54a
...
...
@@ -55,24 +55,24 @@ Extract the external dependencies cache into a directory. Configure OGS as usual
cmake
--preset
release
-DOGS_EXTERNAL_DEPENDENCIES_CACHE
=
./path/to/ext
```
## Example for OpenGeoSys 6.
4.3 (bugfix-branch)
## Example for OpenGeoSys 6.
5.1
On a machine with internet access download the tarballs:
```
bash
wget https://gitlab.opengeosys.org/ogs/ogs/-/archive/
v
6.
4.3
/ogs-
v
6.
4.3
.tar.gz
wget
-O
cpm.tar.gz https://gitlab.opengeosys.org/ogs/ogs/-/package_files/1
93
/download
wget
-O
ext.tar.gz https://gitlab.opengeosys.org/ogs/ogs/-/package_files/12
0
/download
wget https://gitlab.opengeosys.org/ogs/ogs/-/archive/6.
5.1
/ogs-6.
5.1
.tar.gz
wget
-O
cpm.tar.gz https://gitlab.opengeosys.org/ogs/ogs/-/package_files/1
048
/download
wget
-O
ext.tar.gz https://gitlab.opengeosys.org/ogs/ogs/-/package_files/12
45
/download
```
Copy those file onto the machine where you want to build OGS. Then build OGS offline:
```
bash
tar
xf ogs-
v
6.
4.3
.tar.gz
tar
xf ogs-6.
5.1
.tar.gz
tar
xf cpm.tar.gz
tar
xf ext.tar.gz
cd
ogs-
v
6.
4.3
OGS_VERSION
=
6.
4.3
cmake
--preset
release
-DCPM_SOURCE_CACHE
=
../cpm
-DOGS_EXTERNAL_DEPENDENCIES_CACHE
=
../ext
cd
ogs-6.
5.1
OGS_VERSION
=
6.
5.1
cmake
--preset
release
-DCPM_SOURCE_CACHE
=
../cpm
-DOGS_EXTERNAL_DEPENDENCIES_CACHE
=
../ext
cmake
--build
--preset
release
```
This diff is collapsed.
Click to expand it.
web/layouts/releases/list.html
+
0
−
21
View file @
30acc54a
...
...
@@ -48,27 +48,6 @@
<hr>
{{ range first 1 .Data.Pages }}
{{ $vtag := (print "v" .Params.tag ) }}
<h1
id=
"bugfixes"
>
Current release with bug-fixes: {{ .Params.tag }}
</h1>
<p>
Here you can find the last released version ({{ .Params.tag }}) of OpenGeoSys
<a
href=
"https://gitlab.opengeosys.org/ogs/ogs/-/compare/{{ .Params.tag }}...{{ $vtag }}"
>
enhanced with bug-fixes
</a>
.
We recommend to use this version for production.
</p>
<div
class=
"bg-green-50 py-1 px-4 rounded-lg shadow mb-12"
>
<h3><i
class=
"far fa-download"
></i>
Downloads
</h3>
<ul>
{{ range after 1 $.Params.head_downloads }}
<!-- skip pip download -->
<li>
<i
class=
"{{ .icon }}"
></i>
<a
href=
'{{ replace .url "master" $vtag }}'
>
{{ replace .name "Latest" $vtag }}
</a>
{{ if .note }}
<span
class=
"text-sm"
>
({{ .note | markdownify }})
</span>
{{ end }}
</li>
{{ end }}
</ul>
</div>
<h1
class=
"mt-0"
id=
"current"
><i
class=
"far fa-stars"
></i>
Current Release:
<a
style=
"text-decoration: none;"
href=
"{{ .Permalink }}"
>
{{ .Title }}
</a></h1>
...
...
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