26 Commits

Author SHA1 Message Date
a6412341cf Merge pull request 'pipeline 8' (#30) from pipeline8 into main
Some checks failed
Organisation/sirh/pipeline/head There was a failure building this commit
Reviewed-on: #30
2026-04-30 15:59:17 +00:00
ab2d8b479c pipeline 8
All checks were successful
Organisation/sirh/pipeline/head This commit looks good
Organisation/sirh/pipeline/pr-main This commit looks good
2026-04-30 15:57:54 +00:00
8f412cb031 Merge pull request 'pipeline 7' (#29) from pipeline7 into main
Some checks failed
Organisation/sirh/pipeline/head There was a failure building this commit
Reviewed-on: #29
2026-04-30 15:44:04 +00:00
69764b74a2 pipeline 7
Some checks are pending
Organisation/sirh/pipeline/pr-main Build queued...
Organisation/sirh/pipeline/head Build started...
2026-04-30 15:43:00 +00:00
e1dc510af1 Merge pull request 'pipeline 6' (#28) from pipeline6 into main
Some checks failed
Organisation/sirh/pipeline/head There was a failure building this commit
Reviewed-on: #28
2026-04-30 15:28:19 +00:00
fa21850c6b pipeline 6
Some checks are pending
Organisation/sirh/pipeline/head This commit looks good
Organisation/sirh/pipeline/pr-main Build queued...
2026-04-30 15:27:29 +00:00
4a8cbf02b9 Merge pull request 'pipeline 5' (#27) from pipeline5 into main
Some checks failed
Organisation/sirh/pipeline/head There was a failure building this commit
Reviewed-on: #27
2026-04-30 15:21:29 +00:00
798784a163 pipeline 5
Some checks are pending
Organisation/sirh/pipeline/pr-main Build queued...
Organisation/sirh/pipeline/head This commit looks good
2026-04-30 15:21:02 +00:00
86ad99de76 Merge pull request 'pipeline 4' (#25) from pipeline4 into main
Some checks failed
Organisation/sirh/pipeline/head There was a failure building this commit
Reviewed-on: #25
2026-04-30 15:09:54 +00:00
5680677865 pipeline 4
Some checks are pending
Organisation/sirh/pipeline/pr-main Build queued...
Organisation/sirh/pipeline/head Build started...
2026-04-30 15:09:22 +00:00
886c3246af Merge pull request 'pipeline3' (#24) from pipeline3 into main
Some checks failed
Organisation/sirh/pipeline/head There was a failure building this commit
Reviewed-on: #24
2026-04-30 15:03:16 +00:00
7b66250832 pipeline3
Some checks are pending
Organisation/sirh/pipeline/head This commit looks good
Organisation/sirh/pipeline/pr-main Build queued...
2026-04-30 15:01:54 +00:00
80b3573674 Merge pull request 'pipeline 2' (#23) from pipeline2 into main
Some checks failed
Organisation/sirh/pipeline/head There was a failure building this commit
Reviewed-on: #23
2026-04-30 14:56:41 +00:00
efadd66483 pipeline 2
Some checks are pending
Organisation/sirh/pipeline/pr-main Build queued...
Organisation/sirh/pipeline/head Build started...
2026-04-30 14:56:06 +00:00
c9431063de Merge pull request 'Pipeline 1' (#22) from pipeline1 into main
Some checks failed
Organisation/sirh/pipeline/head There was a failure building this commit
Reviewed-on: #22
2026-04-30 14:51:42 +00:00
15c33efc14 Pipeline 1
Some checks failed
Organisation/sirh/pipeline/head There was a failure building this commit
Organisation/sirh/pipeline/pr-main Build queued...
2026-04-30 14:50:58 +00:00
5257901e75 Merge pull request 'Test pipeline' (#21) from jenkins_agent_exemple into main
Some checks failed
Organisation/sirh/pipeline/head There was a failure building this commit
Reviewed-on: #21
2026-04-30 14:47:05 +00:00
b3294a823e Test pipeline
Some checks failed
Organisation/sirh/pipeline/pr-main There was a failure building this commit
2026-04-30 14:45:35 +00:00
2a182830a6 Merge pull request 'Ajout de l'agent' (#20) from jenkins_agent into main
All checks were successful
Organisation/sirh/pipeline/head This commit looks good
Reviewed-on: #20
2026-04-30 13:18:30 +00:00
14631c3744 Ajout de l'agent
Some checks are pending
Organisation/sirh/pipeline/pr-main Build queued...
Organisation/sirh/pipeline/head This commit looks good
2026-04-30 13:17:43 +00:00
f0894bb66f Merge pull request 'jenkins test 3' (#18) from jenkins into main
Some checks failed
Organisation/sirh/pipeline/head There was a failure building this commit
Reviewed-on: #18
2026-04-30 13:12:06 +00:00
75285a140a jenkins test 3
Some checks failed
Organisation/sirh/pipeline/head There was a failure building this commit
Organisation/sirh/pipeline/pr-main There was a failure building this commit
2026-04-30 13:11:14 +00:00
3cc8e292b3 Merge pull request 'renommage jenkinsfile' (#16) from test_jenkins into main
Some checks failed
Organisation/sirh/pipeline/head There was a failure building this commit
Reviewed-on: #16
2026-04-30 13:02:50 +00:00
34d1464391 renommage jenkinsfile
Some checks failed
Organisation/sirh/pipeline/head There was a failure building this commit
Organisation/sirh/pipeline/pr-main There was a failure building this commit
2026-04-30 13:00:26 +00:00
6c12131fab Merge pull request 'Test jenkins 1' (#15) from test_jenkins into main
Reviewed-on: #15
2026-04-30 12:48:13 +00:00
19e4675f32 Test jenkins 1 2026-04-30 12:47:18 +00:00
2 changed files with 185 additions and 152 deletions

33
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,33 @@
pipeline
{
agent any
stages
{
stage ( 'checkout' )
{
steps
{
sh 'echo "Debut du pipeline"'
checkout scm
}
}
stage ( 'Deploiement' )
{
when { branch 'main' }
steps {
sh '''
cd /jenkins_test/sirh
"sylla" | sudo -S chown -R jenkins:jenkins /jenkins_test/sirh
git pull origin main
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
echo "Deploiement reussi"
'''
}
}
}
}

View File

@@ -1,152 +1,152 @@
anyio==4.13.0 anyio
argon2-cffi==25.1.0 argon2-cffi
argon2-cffi-bindings==25.1.0 argon2-cffi-bindings
arrow==1.4.0 arrow
asgiref==3.11.0 asgiref
asttokens==3.0.1 asttokens
async-lru==2.3.0 async-lru
attrs==26.1.0 attrs
Automat==20.2.0 Automat
babel==2.18.0 babel
bcrypt==3.2.0 bcrypt
beautifulsoup4==4.14.3 beautifulsoup4
bleach==6.3.0 bleach
blinker==1.4 blinker
certifi==2026.2.25 certifi
cffi==2.0.0 cffi
chardet==4.0.0 chardet
charset-normalizer==3.4.7 charset-normalizer
click==8.0.3 click
cloud-init==25.3 cloud-init
colorama==0.4.4 colorama
comm==0.2.3 comm
command-not-found==0.3 command-not-found
configobj==5.0.6 configobj
constantly==15.1.0 constantly
cryptography==3.4.8 cryptography
dbus-python==1.2.18 dbus-python
debugpy==1.8.20 debugpy
decorator==5.2.1 decorator
defusedxml==0.7.1 defusedxml
distlib==0.4.0 distlib
distro==1.7.0 distro
distro-info==1.1+ubuntu0.2 distro-info
Django==5.2.10 Django
et_xmlfile==2.0.0 et_xmlfile
exceptiongroup==1.3.1 exceptiongroup
executing==2.2.1 executing
fastjsonschema==2.21.2 fastjsonschema
filelock==3.20.3 filelock
fqdn==1.5.1 fqdn
h11==0.16.0 h11
httpcore==1.0.9 httpcore
httplib2==0.20.2 httplib2
httpx==0.28.1 httpx
hyperlink==21.0.0 hyperlink
idna==3.3 idna
importlib-metadata==4.6.4 importlib-metadata
incremental==21.3.0 incremental
ipykernel==7.2.0 ipykernel
ipython==8.39.0 ipython
isoduration==20.11.0 isoduration
jedi==0.19.2 jedi
jeepney==0.7.1 jeepney
Jinja2==3.0.3 Jinja2
json5==0.14.0 json5
jsonpatch==1.32 jsonpatch
jsonpointer==2.0 jsonpointer
jsonschema==4.26.0 jsonschema
jsonschema-specifications==2025.9.1 jsonschema-specifications
jupyter-events==0.12.0 jupyter-events
jupyter-lsp==2.3.1 jupyter-lsp
jupyter_client==8.8.0 jupyter_client
jupyter_core==5.9.1 jupyter_core
jupyter_server==2.17.0 jupyter_server
jupyter_server_terminals==0.5.4 jupyter_server_terminals
jupyterlab==4.5.6 jupyterlab
jupyterlab_pygments==0.3.0 jupyterlab_pygments
jupyterlab_server==2.28.0 jupyterlab_server
keyring==23.5.0 keyring
lark==1.3.1 lark
launchpadlib==1.10.16 launchpadlib
lazr.restfulclient==0.14.4 lazr.restfulclient
lazr.uri==1.0.6 lazr.uri
MarkupSafe==2.0.1 MarkupSafe
matplotlib-inline==0.2.1 matplotlib-inline
mistune==3.2.0 mistune
more-itertools==8.10.0 more-itertools
nbclient==0.10.4 nbclient
nbconvert==7.17.0 nbconvert
nbformat==5.10.4 nbformat
nest-asyncio==1.6.0 nest-asyncio
netifaces==0.11.0 netifaces
notebook_shim==0.2.4 notebook_shim
numpy==2.2.6 numpy
oauthlib==3.2.0 oauthlib
openpyxl==3.1.5 openpyxl
overrides==7.7.0 overrides
packaging==26.0 packaging
pandas==2.3.3 pandas
pandocfilters==1.5.1 pandocfilters
parso==0.8.6 parso
pexpect==4.9.0 pexpect
platformdirs==4.5.1 platformdirs
prometheus_client==0.24.1 prometheus_client
prompt_toolkit==3.0.52 prompt_toolkit
psutil==7.2.2 psutil
ptyprocess==0.7.0 ptyprocess
pure_eval==0.2.3 pure_eval
pyasn1==0.4.8 pyasn1
pyasn1-modules==0.2.1 pyasn1-modules
pycparser==3.0 pycparser
pycurl==7.44.1 pycurl
Pygments==2.20.0 Pygments
PyGObject==3.42.1 PyGObject
PyHamcrest==2.0.2 PyHamcrest
PyJWT==2.3.0 PyJWT
pyOpenSSL==21.0.0 pyOpenSSL
pyparsing==2.4.7 pyparsing
pyrsistent==0.18.1 pyrsistent
pyserial==3.5 pyserial
python-apt==2.4.0+ubuntu4.1 python-apt
python-dateutil==2.9.0.post0 python-dateutil
python-json-logger==4.1.0 python-json-logger
pytz==2022.1 pytz
PyYAML==5.4.1 PyYAML
pyzmq==27.1.0 pyzmq
referencing==0.37.0 referencing
requests==2.33.1 requests
rfc3339-validator==0.1.4 rfc3339-validator
rfc3986-validator==0.1.1 rfc3986-validator
rfc3987-syntax==1.1.0 rfc3987-syntax
rpds-py==0.30.0 rpds-py
SecretStorage==3.3.1 SecretStorage
Send2Trash==2.1.0 Send2Trash
service-identity==18.1.0 service-identity
six==1.16.0 six
soupsieve==2.8.3 soupsieve
sqlparse==0.5.5 sqlparse
ssh-import-id==5.11 ssh-import-id
stack-data==0.6.3 stack-data
systemd-python==234 systemd-python
terminado==0.18.1 terminado
tinycss2==1.4.0 tinycss2
tomli==2.4.1 tomli
tornado==6.5.5 tornado
traitlets==5.14.3 traitlets
Twisted==22.1.0 Twisted
typing_extensions==4.15.0 typing_extensions
tzdata==2025.3 tzdata
ubuntu-pro-client==8001 ubuntu-pro-client
ufw==0.36.1 ufw
unattended-upgrades==0.1 unattended-upgrades
uri-template==1.3.0 uri-template
urllib3==1.26.5 urllib3
virtualenv==20.13.0+ds virtualenv
wadllib==1.3.6 wadllib
wcwidth==0.6.0 wcwidth
webcolors==25.10.0 webcolors
webencodings==0.5.1 webencodings
websocket-client==1.9.0 websocket-client
zipp==1.0.0 zipp
zope.interface==5.4.0 zope.interface