Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Systemstatistiken
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
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
Uni Oldenburg
Plugins
Systemstatistiken
Commits
8a99ad8a
Commit
8a99ad8a
authored
1 year ago
by
Jan-Hendrik Willms
Browse files
Options
Downloads
Patches
Plain Diff
Plugin für Stud.IP 5.4 anpassen
parent
48f723df
No related branches found
No related tags found
1 merge request
!1
Plugin für Stud.IP 5.4 anpassen
Pipeline
#18293
passed
1 year ago
Stage: packaging
Stage: release
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+46
-0
46 additions, 0 deletions
.gitlab-ci.yml
SysStats.php
+1
-1
1 addition, 1 deletion
SysStats.php
assets/style.scss
+1
-1
1 addition, 1 deletion
assets/style.scss
plugin.manifest
+1
-1
1 addition, 1 deletion
plugin.manifest
with
49 additions
and
3 deletions
.gitlab-ci.yml
0 → 100644
+
46
−
0
View file @
8a99ad8a
image
:
composer:latest
variables
:
DOCKER_DRIVER
:
overlay2
stages
:
-
packaging
-
release
packaging
:
stage
:
packaging
rules
:
-
if
:
$CI_COMMIT_TAG
before_script
:
-
echo GE_JOB_ID=$CI_JOB_ID >> .packaging.env
-
mkdir .pkg
script
:
-
zip -9r .pkg/$CI_PROJECT_NAME-$CI_COMMIT_TAG.zip * -x 'vendor/*'
artifacts
:
name
:
"
${CI_PROJECT_TITLE}
${CI_COMMIT_TAG}"
paths
:
-
.pkg/$CI_PROJECT_NAME-$CI_COMMIT_TAG.zip
reports
:
dotenv
:
.packaging.env
expire_in
:
never
release
:
stage
:
release
image
:
studip/release-cli
cache
:
[]
rules
:
-
if
:
$CI_COMMIT_TAG
script
:
-
echo 'Running release job'
needs
:
-
job
:
packaging
artifacts
:
true
release
:
name
:
$CI_COMMIT_TAG
description
:
"
${CI_PROJECT_TITLE}
${CI_COMMIT_TAG}"
tag_name
:
$CI_COMMIT_TAG
assets
:
links
:
-
name
:
"
${CI_PROJECT_NAME}-${CI_COMMIT_TAG}.zip"
url
:
"
${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/jobs/${GE_JOB_ID}/artifacts/.pkg/${CI_PROJECT_NAME}-${CI_COMMIT_TAG}.zip"
link_type
:
package
This diff is collapsed.
Click to expand it.
SysStats.php
+
1
−
1
View file @
8a99ad8a
...
...
@@ -33,7 +33,7 @@ class SysStats extends StudIPPlugin implements SystemPlugin
public
function
perform
(
$unconsumed
)
{
$this
->
addStylesheet
(
'assets/style.
le
ss'
);
$this
->
addStylesheet
(
'assets/style.
sc
ss'
);
parent
::
perform
(
$unconsumed
);
}
...
...
This diff is collapsed.
Click to expand it.
assets/style.
le
ss
→
assets/style.
sc
ss
+
1
−
1
View file @
8a99ad8a
...
...
@@ -27,7 +27,7 @@ table.statistics {
thead
th
:last-child:not
(
:only-child
),
tbody
td
:last-child:not
(
:only-child
)
{
border-left: 3px double
@
brand-color-darker;
border-left
:
3px
double
var
(
--
brand-color-darker
)
;
}
}
}
This diff is collapsed.
Click to expand it.
plugin.manifest
+
1
−
1
View file @
8a99ad8a
pluginname=Systemstatistiken
pluginclassname=SysStats
origin=UOL
version=1.
2
version=1.
3
studipMinVersion=5.0
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