Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reorganize GitLab project structure #9

Merged
merged 1 commit into from
Feb 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: git clone https://github.com/${{ github.repository }} .
- run: git remote add gitlab https://gitlab.com/code0-tech/telescopium.git
- run: git remote add gitlab https://gitlab.com/code0-tech/development/telescopium.git
- run: >-
git
-c credential.helper='!f() { sleep 1; echo "username=${{ secrets.GL_API_USER }}"; echo "password=${{ secrets.GL_API_TOKEN }}"; }; f'
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build:
- .build
stage: build
variables:
C0_GLOBAL_BASE: /-/telescopium/-/jobs/$CI_JOB_ID/artifacts/dist
C0_GLOBAL_BASE: /-/development/telescopium/-/jobs/$CI_JOB_ID/artifacts/dist
after_script:
- node scripts/local_link_suffixer.js
- |
Expand Down
4 changes: 2 additions & 2 deletions ci-template.gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
docs:
stage: test
trigger:
project: code0-tech/telescopium
project: code0-tech/development/telescopium
branch: build-branch
strategy: depend
variables:
Expand Down Expand Up @@ -46,7 +46,7 @@ docs:preview:
- BUILD_JOB_ID=$(echo "$RESPONSE" | jq -r .data.project.pipeline.job.downstreamPipeline.job.id | awk -F '/' '{print $NF}')
- |
echo -e "\e[0Ksection_start:`date +%s`:glpa_summary\r\e[0KHeader of the summary"
echo "Documentation preview available at https://code0-tech.gitlab.io/-/telescopium/-/jobs/$BUILD_JOB_ID/artifacts/dist/index.html"
echo "Documentation preview available at https://code0-tech.gitlab.io/-/development/telescopium/-/jobs/$BUILD_JOB_ID/artifacts/dist/index.html"
echo -e "\e[0Ksection_end:`date +%s`:glpa_summary\r\e[0K"
rules:
- if: $C0_GH_REF != "refs/heads/main"
Loading