Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tutoriel_numerique
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
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
GRM
tutoriel_numerique
Commits
2d55ca51
Commit
2d55ca51
authored
5 years ago
by
Mickael Fiorentino
Browse files
Options
Downloads
Patches
Plain Diff
Ajout du script de déploiement pour les labs
parent
3cac6fc3
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
constraints/.gitignore
+1
-0
1 addition, 0 deletions
constraints/.gitignore
scripts/deploy.csh
+33
-0
33 additions, 0 deletions
scripts/deploy.csh
with
34 additions
and
0 deletions
constraints/.gitignore
0 → 100644
+
1
−
0
View file @
2d55ca51
*.syn.sdc
This diff is collapsed.
Click to expand it.
scripts/deploy.csh
0 → 100755
+
33
−
0
View file @
2d55ca51
#!/usr/bin/env tcsh
#-----------------------------------------------------------------------------
# Project Tutoriels - Conception de circuits intégrés numériques
#-----------------------------------------------------------------------------
# File deploy.csh
# Authors Mickael Fiorentino <mickael.fiorentino@polymtl.ca>
# Lab GRM - Polytechnique Montréal
# Date <2019-10-01 Tue>
#-----------------------------------------------------------------------------
# Brief Met à jour le dossier partagé avec les étudiant dans un autre repo git
#-----------------------------------------------------------------------------
if ( ! $?PROJECT_HOME ) then
echo "ERREUR: Configurer l'environnement (source setup.csh) avant d'utiliser ce script"
exit 1
endif
set DEST_HOME = `realpath ${PROJECT_HOME}/../tutoriel_numerique`
set DEST_SDC = ${DEST_HOME}/constraints
set DEST_IMP = ${DEST_HOME}/implementation
set DEST_SCRIPTS = ${DEST_HOME}/scripts
set DEST_SIM = ${DEST_HOME}/simulation
set DEST_SRC = ${DEST_HOME}/sources
# Création des dossier
mkdir -p $DEST_SDC $DEST_IMP $DEST_SCRIPTS $DEST_SIM $DEST_SRC
# Mise à jour des fichiers
cp -fv ${PROJECT_HOME}/{setup.csh,README.md} ${DEST_HOME}/
cp -fv ${CONST_DIR}/{.gitignore,mmmc.tcl,timing.sdc} ${DEST_SDC}/
cp -fv ${IMP_DIR}/{.gitignore,cds.lib} ${DEST_IMP}/
cp -fv ${SCRIPTS_DIR}/clean.csh ${DEST_SCRIPTS}/
cp -fv ${SIM_DIR}/.gitignore ${DEST_SIM}/
cp -fv ${SRC_DIR}/{compteur.vhd,compteur_tb.vhd} ${DEST_SRC}/
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