Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nghyd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
A compter du 1er avril, attention à vos pipelines :
Nouvelles limitations de Docker Hub
Show more breadcrumbs
Cassiopée
nghyd
Merge requests
!58
Testci
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Testci
testci
into
master
Overview
0
Commits
18
Pipelines
1
Changes
4
Merged
David Dorchies
requested to merge
testci
into
master
5 years ago
Overview
0
Commits
18
Pipelines
1
Changes
4
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
4ed523f8
18 commits,
5 years ago
4 files
+
80
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
0 → 100644
+
77
−
0
Options
stages
:
-
jalhyd
-
install
#- test
-
build
-
release-android
-
release-linux
variables
:
LC_ALL
:
C.UTF-8
cache
:
paths
:
-
node_modules/
jalhyd
:
stage
:
jalhyd
only
:
-
tags
-
schedules
-
web
script
:
-
export JALHYD_BRANCH=`cat jalhyd_branch`
-
echo "Branche JalHyd - $JALHYD_BRANCH"
-
cd ..
-
rm -rf jalhyd
-
git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.irstea.fr/cassiopee/jalhyd.git
-
cd jalhyd
-
git checkout "$JALHYD_BRANCH"
-
npm install
-
npm run build
install
:
stage
:
install
only
:
-
tags
-
schedules
-
web
script
:
-
rm -rf node_modules
-
npm install
build
:
stage
:
build
only
:
-
tags
-
schedules
-
web
script
:
-
npm run build
# test:
# stage: test
# only:
# - tags
# - schedules
# - web
# script:
# - npm run e2e
release-android
:
stage
:
release-android
only
:
-
tags
-
schedules
-
web
script
:
-
npm run release-android
release-linux
:
stage
:
release-linux
only
:
-
tags
-
schedules
-
web
script
:
-
npm run release-linux
Loading