Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Group3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Patric Torén
Group3
Merge requests
!1
Ci patto341
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Ci patto341
CI_patto341
into
master
Overview
0
Commits
10
Pipelines
3
Changes
1
Merged
Patric Torén
requested to merge
CI_patto341
into
master
3 years ago
Overview
0
Commits
10
Pipelines
3
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
7b6e2190
10 commits,
3 years ago
1 file
+
51
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
0 → 100644
+
51
−
0
Options
image
:
alash325/javaant:latest
stages
:
-
build
-
test
-
deploy
myBuild
:
stage
:
build
script
:
-
ant build
artifacts
:
when
:
always
paths
:
-
./build
myTest
:
stage
:
test
script
:
-
ant -lib test/lib/junit.jar -Dtest=AllTests testall
artifacts
:
when
:
always
paths
:
-
./build/report
reports
:
junit
:
./build/report/xml/TEST-net.sf.freecol.AllTests.xml
pages
:
only
:
-
master
stage
:
deploy
script
:
-
mkdir public
-
cp ./build/report/* public
artifacts
:
paths
:
-
public
Loading