Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
lcgcool
cool
Commits
6a0268da
Commit
6a0268da
authored
1 year ago
by
mavogel
Browse files
Options
Downloads
Patches
Plain Diff
Fixing CI jobs
parent
35ad5e22
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+4
-4
4 additions, 4 deletions
.gitlab-ci.yml
script-gitlab-ci.yml.py
+2
-2
2 additions, 2 deletions
script-gitlab-ci.yml.py
with
6 additions
and
6 deletions
.gitlab-ci.yml
+
4
−
4
View file @
6a0268da
...
...
@@ -9,9 +9,9 @@ build_x86_64-centos7-gcc11-dbg_dev3:
-
logs/qmtestCool/$BINARY_TAG
before_script
:
-
"
echo
$BINARY_TAG
$CI_COMMIT_REF_NAME"
-
"
export
highest=$(curl
--header
\"
PRIVATE
-TOKEN:
$
PRIVATE
_TOKEN
\"
\"
https://gitlab.cern.ch/api/v4/projects/25684/jobs?per_page=100
\"
|
jq
\"
.[]
|
select(.name
==
\\\"
build_x86_64-centos7-gcc11-dbg_dev3
\\\"
)
|
select(.ref
==
\\\"
${CI_COMMIT_REF_NAME}
\\\"
)
|
.id
\"
|
sort
-n
|
tail
-1)"
-
"
export
highest=$(curl
--header
\"
JOB
-TOKEN:
$
CI_JOB
_TOKEN
\"
\"
https://gitlab.cern.ch/api/v4/projects/25684/jobs?per_page=100
\"
|
jq
\"
.[]
|
select(.name
==
\\\"
build_x86_64-centos7-gcc11-dbg_dev3
\\\"
)
|
select(.ref
==
\\\"
${CI_COMMIT_REF_NAME}
\\\"
)
|
.id
\"
|
sort
-n
|
tail
-1)"
-
"
echo
$highest"
-
"
curl
-L
--header
\"
PRIVATE
-TOKEN:
$
PRIVATE
_TOKEN
\"
\"
https://gitlab.cern.ch/api/v4/projects/25684/jobs/$highest/artifacts
\"
>
coral-build_x86_64-centos7-gcc11-dbg_dev3.zip"
-
"
curl
-L
--header
\"
JOB
-TOKEN:
$
CI_JOB
_TOKEN
\"
\"
https://gitlab.cern.ch/api/v4/projects/25684/jobs/$highest/artifacts
\"
>
coral-build_x86_64-centos7-gcc11-dbg_dev3.zip"
-
"
ls
-l
coral-build_x86_64-centos7-gcc11-dbg_dev3.zip"
-
"
unzip
coral-build_x86_64-centos7-gcc11-dbg_dev3.zip
-d
./coral"
script
:
...
...
@@ -40,9 +40,9 @@ build_x86_64-centos7-gcc11-opt_dev3:
-
logs/qmtestCool/$BINARY_TAG
before_script
:
-
"
echo
$BINARY_TAG
$CI_COMMIT_REF_NAME"
-
"
export
highest=$(curl
--header
\"
PRIVATE
-TOKEN:
$
PRIVATE
_TOKEN
\"
\"
https://gitlab.cern.ch/api/v4/projects/25684/jobs?per_page=100
\"
|
jq
\"
.[]
|
select(.name
==
\\\"
build_x86_64-centos7-gcc11-opt_dev3
\\\"
)
|
select(.ref
==
\\\"
${CI_COMMIT_REF_NAME}
\\\"
)
|
.id
\"
|
sort
-n
|
tail
-1)"
-
"
export
highest=$(curl
--header
\"
JOB
-TOKEN:
$
CI_JOB
_TOKEN
\"
\"
https://gitlab.cern.ch/api/v4/projects/25684/jobs?per_page=100
\"
|
jq
\"
.[]
|
select(.name
==
\\\"
build_x86_64-centos7-gcc11-opt_dev3
\\\"
)
|
select(.ref
==
\\\"
${CI_COMMIT_REF_NAME}
\\\"
)
|
.id
\"
|
sort
-n
|
tail
-1)"
-
"
echo
$highest"
-
"
curl
-L
--header
\"
PRIVATE
-TOKEN:
$
PRIVATE
_TOKEN
\"
\"
https://gitlab.cern.ch/api/v4/projects/25684/jobs/$highest/artifacts
\"
>
coral-build_x86_64-centos7-gcc11-opt_dev3.zip"
-
"
curl
-L
--header
\"
JOB
-TOKEN:
$
CI_JOB
_TOKEN
\"
\"
https://gitlab.cern.ch/api/v4/projects/25684/jobs/$highest/artifacts
\"
>
coral-build_x86_64-centos7-gcc11-opt_dev3.zip"
-
"
ls
-l
coral-build_x86_64-centos7-gcc11-opt_dev3.zip"
-
"
unzip
coral-build_x86_64-centos7-gcc11-opt_dev3.zip
-d
./coral"
script
:
...
...
This diff is collapsed.
Click to expand it.
script-gitlab-ci.yml.py
+
2
−
2
View file @
6a0268da
...
...
@@ -11,9 +11,9 @@ def build_gitlabci(binary_tag, view, OS):
- logs/qmtestCool/$BINARY_TAG
before_script:
-
"
echo $BINARY_TAG $CI_COMMIT_REF_NAME
"
-
"
export highest=$(curl --header
\\\"
PRIVATE
-TOKEN: $
PRIVATE
_TOKEN
\\\"
\\\"
https://gitlab.cern.ch/api/v4/projects/25684/jobs?per_page=100
\\\"
| jq
\\\"
.[] | select(.name ==
\\\\\\\"
{
name
}
\\\\\\\"
) | select(.ref ==
\\\\\\\"
${{CI_COMMIT_REF_NAME}}
\\\\\\\"
) | .id
\\\"
| sort -n | tail -1)
"
-
"
export highest=$(curl --header
\\\"
JOB
-TOKEN: $
CI_JOB
_TOKEN
\\\"
\\\"
https://gitlab.cern.ch/api/v4/projects/25684/jobs?per_page=100
\\\"
| jq
\\\"
.[] | select(.name ==
\\\\\\\"
{
name
}
\\\\\\\"
) | select(.ref ==
\\\\\\\"
${{CI_COMMIT_REF_NAME}}
\\\\\\\"
) | .id
\\\"
| sort -n | tail -1)
"
-
"
echo $highest
"
-
"
curl -L --header
\\\"
PRIVATE
-TOKEN: $
PRIVATE
_TOKEN
\\\"
\\\"
https://gitlab.cern.ch/api/v4/projects/25684/jobs/$highest/artifacts
\\\"
> coral-
{
name
}
.zip
"
-
"
curl -L --header
\\\"
JOB
-TOKEN: $
CI_JOB
_TOKEN
\\\"
\\\"
https://gitlab.cern.ch/api/v4/projects/25684/jobs/$highest/artifacts
\\\"
> coral-
{
name
}
.zip
"
-
"
ls -l coral-
{
name
}
.zip
"
-
"
unzip coral-
{
name
}
.zip -d ./coral
"
script:
...
...
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