Nantes Université
Skip to content
GitLab
Explorer
Connexion
S'inscrire
Navigation principale
Rechercher ou aller à…
Projet
rpm-slurm
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Wiki
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Extraits de code
Compilation
Pipelines
Jobs
Planifications de pipeline
Artéfacts
Déploiement
Releases
Registre de conteneur
Registre de modèles
Opération
Environnements
Surveillance
Incidents
Service d'assistance
Analyse
Données d'analyse des chaînes de valeur
Analyse des contributeurs
Données d'analyse CI/CD
Données d'analyse du dépôt
Expériences du modèle
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
Jean-Francois GUILLAUME
rpm-slurm
Validations
4b358f2b
Vérifiée
Valider
4b358f2b
rédigé
il y a 5 ans
par
Jean-Francois GUILLAUME
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
adding flags to slurm
parent
fe35c274
Aucune branche associée trouvée
Branches contenant la validation
Aucune étiquette associée trouvée
Étiquettes contenant la validation
Aucune requête de fusion associée trouvée
Modifications
3
Masquer les modifications d'espaces
En ligne
Côte à côte
Affichage de
3 fichiers modifiés
.gitlab-ci.yml
+1
-1
1 ajout, 1 suppression
.gitlab-ci.yml
SLURM_INFOS
+2
-2
2 ajouts, 2 suppressions
SLURM_INFOS
compile_dmtcp.sh
+6
-0
6 ajouts, 0 suppression
compile_dmtcp.sh
avec
9 ajouts
et
3 suppressions
.gitlab-ci.yml
+
1
−
1
Voir le fichier @
4b358f2b
...
...
@@ -18,7 +18,7 @@ build:
-
'
if
[
${COMPILE_AUKS}
-eq
1
];
then
/usr/bin/echo
"compiling
auks
${AUKS_VERSION}
-
${AUKS_DEST_ARCH}
from
${AUKS_URL}"
;
./compile_auks.sh
;
fi'
-
'
if
[
${COMPILE_DMTCP}
-eq
1
];
then
/usr/bin/echo
"compiling
dmtcp
${DMTCP_VERSION}
-
${DMTCP_DEST_ARCH}
from
${DMTCP_URL}"
;
./compile_dmtcp.sh
;
fi'
-
'
if
[
${COMPILE_LIBYOGRT}
-eq
1
];
then
/usr/bin/echo
"compiling
libyogrt
${LIBYOGRT_VERSION}
-
${LIBYOGRT_DEST_ARCH}
from
${LIBYOGRT_URL}"
;
./compile_libyogrt.sh
;
fi'
-
'
if
[
${COMPILE_AUKS}
-eq
1
]
|
[
${COMPILE_DMTCP}
-eq
1
]
|
[
${COMPILE_LIBYOGRT}
-eq
1
];
then
.
./SLURM_INFOS
&&
./compile_slurm.sh
;
fi'
-
'
/usr/bin/ls
./ARTIFACTS/*'
artifacts
:
paths
:
...
...
This diff is collapsed.
Cliquez pour l'agrandir.
SLURM_INFOS
+
2
−
2
Voir le fichier @
4b358f2b
...
...
@@ -7,8 +7,8 @@ export SLURM_RELEASE_SPEC="1"
export SLURM_URL="https://github.com/SchedMD/slurm"
export SLURM_DEST_ARCH="x86_64"
export SLURM_OPTIONS=""
export SLURM_BUILD_DEP_OPTIONS='--define="_with_
hdf5 1" --define="_with_hwloc
1" --define="_with_
lua
1" --define="_with_mysql 1" --define="_with_
numa 1" --define="_with_openssl
1"'
export SLURM_BUILD_OPTIONS='--with
hdf5 --with hwloc
--with
lua
--with mysql --with
numa --with openssl
'
export SLURM_BUILD_DEP_OPTIONS='--define="_with_
cray 1" --define="_with_cray_network 1" --define="_with_slurmsmwd 1" --define="_with_multiple_slurmd 1" --define="_with_ucx
1" --define="_with_
hwloc
1" --define="_with_mysql 1" --define="_with_
hdf5 1" --define="_with_lua 1" --define="_with_numa 1" --define="_with_x11 1" --define="_with_pmix 1" --define="_with_ssl 1" --define="_with_shared_libslurm 1" --define="_with_freeipmi
1"'
export SLURM_BUILD_OPTIONS='--with
cray --with cray_network --with slurmsmwd --with multiple_slurmd --with ucx
--with
hwloc
--with mysql --with
hdf5 --with lua --with numa --with x11 --with pmix --with ssl --with shared_libslurm --with freeipmi
'
#
# MUNGE RELATED
...
...
This diff is collapsed.
Cliquez pour l'agrandir.
compile_dmtcp.sh
+
6
−
0
Voir le fichier @
4b358f2b
...
...
@@ -29,5 +29,11 @@ tar --exclude-vcs --totals --create --verbose --gz --file ${TOP_DIR}/SOURCES/dm
# installing result to be used when compiling dmtcp
/usr/bin/yum
install
-y
${
TOP_DIR
}
/ARTIFACTS/
*
# export SLURM_BUILD_DEP_OPTIONS='${SLURM_BUILD_DEP_OPTIONS}'
# export SLURM_BUILD_OPTIONS='${SLURM_BUILD_DEP_OPTIONS}'
#
# /usr/bin/sed -i "s|SLURM_BUILD_DEP_OPTIONS=.*|SLURM_BUILD_DEP_OPTIONS='${SLURM_BUILD_DEP_OPTIONS}'|g" ${TOP_DIR}/SLURM_INFOS
# /usr/bin/sed -i "s|SLURM_BUILD_OPTIONS=.*|SLURM_BUILD_OPTIONS='${SLURM_BUILD_OPTIONS}'|g" ${TOP_DIR}/SLURM_INFOS
# Cleaning post compilation
/usr/bin/rm
-rf
${
TOP_DIR
}
/BUILD/
*
${
TOP_DIR
}
/RPMS/
*
${
TOP_DIR
}
/SRPMS/
*
${
TOP_DIR
}
/SOURCES/
*
${
TOP_DIR
}
/BUILDROOT/
*
This diff is collapsed.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter