Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SmartDataLab
public
applications
renovate
Commits
3bc0b14a
Unverified
Commit
3bc0b14a
authored
Feb 11, 2020
by
Michael Kriese
Committed by
GitHub
Feb 11, 2020
Browse files
Options
Downloads
Patches
Plain Diff
chore(ci): skip java tests on most platforms (#5448)
parent
1e0163a4
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/test.yml
+13
-2
13 additions, 2 deletions
.github/workflows/test.yml
with
13 additions
and
2 deletions
.github/workflows/test.yml
+
13
−
2
View file @
3bc0b14a
...
...
@@ -15,12 +15,18 @@ jobs:
name
:
test
runs-on
:
${{ matrix.os }}
# tests shouldn't nee more than 10 min
timeout-minutes
:
15
strategy
:
max-parallel
:
4
max-parallel
:
6
matrix
:
os
:
[
ubuntu-latest
,
macos-latest
,
windows-latest
]
node-version
:
[
10
.x
,
12
.x
]
node-version
:
[
10
,
12
]
python-version
:
[
3.8
]
exclude
:
-
os
:
windows-latest
node-version
:
10
steps
:
-
name
:
Set up Node.js ${{ matrix.node-version }}
...
...
@@ -34,10 +40,15 @@ jobs:
python-version
:
${{ matrix.python-version }}
-
name
:
Set up Java
11
if
:
matrix.os == 'ubuntu-latest' && matrix.node-version == 12 && github.ref != 'refs/heads/master'
uses
:
actions/setup-java@v1
with
:
java-version
:
11
-
name
:
Skip Java tests
if
:
matrix.os != 'ubuntu-latest' || matrix.node-version != 12 || github.ref == 'refs/heads/master'
run
:
echo "::set-env name=SKIP_JAVA_TESTS::true"
-
name
:
Init platform
id
:
init
shell
:
bash
...
...
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