Skip to content

Commit 961dfd6

Browse files
authored
Merge pull request JacORB#282 from rnc/BR1
2 parents 54c9cfb + cd22ae2 commit 961dfd6

File tree

26 files changed

+82
-145
lines changed

26 files changed

+82
-145
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/workflows/maven.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ on:
1111

1212
jobs:
1313
build:
14-
strategy:
15-
fail-fast: false
16-
matrix:
17-
maven: [3.3.9, 3.5.4, 3.6.3, 3.8.1]
1814
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idif
1915
if: github.repository == 'JacORB/JacORB' && github.event_name == 'pull_request'
2016
runs-on: ubuntu-latest
@@ -27,18 +23,19 @@ jobs:
2723
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
2824
restore-keys: |
2925
${{ runner.os }}-maven-
30-
- name: Set up JDK 11
26+
- name: Set up JDK 8
3127
uses: actions/setup-java@v1
3228
with:
33-
java-version: 11
29+
java-version: 8
3430
- name: Set up Maven
3531
uses: stCarolas/setup-maven@v4
3632
with:
37-
maven-version: ${{ matrix.maven }}
33+
maven-version: 3.6.3
3834
- name: Build with Maven
39-
run: mvn -B -V -Dtravis-ci=true -DskipJavadoc=true -DskipPDFGeneration clean install
40-
# - name: Setup tmate session
41-
# uses: mxschmitt/action-tmate@v3
35+
run: mvn -B -V -DskipPDFGeneration clean install
36+
- name: Setup tmate session
37+
uses: mxschmitt/action-tmate@v3
38+
if: ${{ failure() }}
4239
- name: Codecov
4340
uses: codecov/codecov-action@v1
4441

@@ -54,10 +51,14 @@ jobs:
5451
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
5552
restore-keys: |
5653
${{ runner.os }}-maven-
57-
- name: Set up JDK 11
54+
- name: Set up JDK 8
5855
uses: actions/setup-java@v1
5956
with:
60-
java-version: 11
57+
java-version: 8
58+
- name: Set up Maven
59+
uses: stCarolas/setup-maven@v4
60+
with:
61+
maven-version: 3.6.3
6162
# https://github.com/marketplace/actions/maven-setings-action
6263
- name: Maven Settings
6364
uses: s4u/maven-settings-action@v2
@@ -71,6 +72,6 @@ jobs:
7172
"password": "${{ secrets.SONATYPE_PASSWORD }}"
7273
}]
7374
- name: Deploy Snapshot
74-
run: mvn -B -V org.apache.maven.plugins:maven-source-plugin:jar-no-fork -Dtravis-ci=true -DskipJavadoc=true -DskipPDFGeneration deploy
75+
run: mvn -B -V org.apache.maven.plugins:maven-source-plugin:jar-no-fork -DskipPDFGeneration deploy -DskipTests=true
7576
- name: Codecov
7677
uses: codecov/codecov-action@v1

bin/dior

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22
#
33
# Decodes and prints the components of a stringified IOR
44
#

bin/evc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
# Starts the JacORB event channel
44
jaco org.jacorb.events.EventChannelImpl "$@"

bin/fixior

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22
# Patches address and port information into IOR
33

44
jaco org.jacorb.orb.util.FixIOR "$@"

bin/idl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
resolve()
44
{

bin/imr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
# Starts the JacORB Implementation Repository
44
jaco org.jacorb.imr.ImplementationRepositoryImpl "$@"

bin/imr_mg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
# Starts the JacORB Implementation repository manager
44
jaco org.jacorb.imr.util.ImRManager "$@"

bin/imr_ssd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
# Starts the JacORB ImR server startup daemon
44
jaco org.jacorb.imr.ServerStartupDaemonImpl "$@"

bin/ir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
# Starts the JacORB Interface Repository
44
jaco org.jacorb.ir.IRServer "$@"

0 commit comments

Comments
 (0)