Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Project_jenkins_php
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
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
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MUNIER Florian
Project_jenkins_php
Commits
391122b7
Commit
391122b7
authored
2 years ago
by
MUNIER Florian
Browse files
Options
Downloads
Patches
Plain Diff
[upd] update certificates
parent
9c7c99cd
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Jenkinsfile
+28
-0
28 additions, 0 deletions
Jenkinsfile
build/docker/phpunit/Dockerfile
+1
-1
1 addition, 1 deletion
build/docker/phpunit/Dockerfile
with
29 additions
and
1 deletion
Jenkinsfile
0 → 100644
+
28
−
0
View file @
391122b7
pipeline
{
agent
any
stages
{
stage
(
'checkout'
)
{
agent
any
steps
{
echo
"Phase 1 : checkout"
checkout
([
$class
:
'GitSCM'
,
branches:
[[
name:
'*/master'
]],
extensions:
[],
userRemoteConfigs:
[[
url:
'https://gitlab.imt-atlantique.fr/f21munie/project_jenkins_php.git'
]]])
}
}
stage
(
'test'
)
{
echo
"Phase 2 : agent Dockerfile"
agent
{
dockerfile
{
dir
'build/docker/phpunit'
filename
'Dockerfile'
}
}
steps
{
echo
"Phase 3 : préparation de l'environnement"
sh
'ls -l'
sh
'make clean'
sh
'ls -l'
}
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
build/docker/phpunit/Dockerfile
+
1
−
1
View file @
391122b7
FROM
alpine:20220715
as
downloader
RUN
apk add
--no-cache
\
ca-certificates
=
2022
0614
-r
2
\
ca-certificates
=
2022
1203
-r
1
\
wget
=
1.21.3-r2
WORKDIR
/tmp
...
...
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