summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-06-09 18:47:36 +0200
committerGitHub <noreply@github.com>2020-06-09 18:47:36 +0200
commite0062cee7d33b00b818ec63f1deb2effff7ce79f (patch)
tree862a5f990be125e341ffcd29e29134e5bb98ec2a
parent328c87c87e1e4f29561cfcd182c328377ef81a16 (diff)
parent153af0ed62f2abb0c73b601a7fbc41923b1b44ff (diff)
downloadATCD-e0062cee7d33b00b818ec63f1deb2effff7ce79f.tar.gz
Merge pull request #1137 from jwillemsen/jwi-githubmatrix
Simplify matrix
-rw-r--r--.github/workflows/linux.yml77
-rw-r--r--.github/workflows/macosx.yml9
-rw-r--r--TAO/tao/Invocation_Retry_State.cpp1
-rw-r--r--TAO/tao/Invocation_Retry_State.h2
4 files changed, 29 insertions, 60 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index c2663c37440..d1bca0dcc75 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -10,96 +10,71 @@ jobs:
build:
strategy:
matrix:
- name: [
- GCC48,
- GCC6,
- GCC7,
- GCC8,
- GCC9,
- GCC10,
- CLANG5,
- CLANG6,
- CLANG7,
- CLANG8,
- CLANG9,
- CLANG10
- ]
include:
- - name: GCC48
- CC: gcc-4.8
+ - CC: gcc-4.8
CXX: g++-4.8
PackageDeps: g++-4.8
platform_file: include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU
- imagename: ubuntu-16.04
- - name: GCC6
- CC: gcc-6
+ os: ubuntu-16.04
+ - CC: gcc-6
CXX: g++-6
PackageDeps: g++-6
platform_file: include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU
- imagename: ubuntu-18.04
- - name: GCC7
- CC: gcc-7
+ os: ubuntu-18.04
+ - CC: gcc-7
CXX: g++-7
PackageDeps: g++-7
platform_file: include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU
- imagename: ubuntu-18.04
- - name: GCC8
- CC: gcc-8
+ os: ubuntu-18.04
+ - CC: gcc-8
CXX: g++-8
PackageDeps: g++-8
platform_file: include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU
- imagename: ubuntu-18.04
- - name: GCC9
- CC: gcc-9
+ os: ubuntu-18.04
+ - CC: gcc-9
CXX: g++-9
PackageDeps: g++-9
platform_file: include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU
- imagename: ubuntu-18.04
- - name: GCC10
- CC: gcc-10
+ os: ubuntu-18.04
+ - CC: gcc-10
CXX: g++-10
PackageDeps: g++-10
platform_file: include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU
- imagename: ubuntu-20.04
- - name: CLANG5
- CC: clang-5.0
+ os: ubuntu-20.04
+ - CC: clang-5.0
CXX: clang++-5.0
PackageDeps: clang-5.0
platform_file: include $(ACE_ROOT)/include/makeinclude/platform_linux_clang.GNU
- imagename: ubuntu-16.04
- - name: CLANG6
- CC: clang-6.0
+ os: ubuntu-16.04
+ - CC: clang-6.0
CXX: clang++-6.0
PackageDeps: clang-6.0
platform_file: include $(ACE_ROOT)/include/makeinclude/platform_linux_clang.GNU
- imagename: ubuntu-18.04
- - name: CLANG7
- CC: clang-7
+ os: ubuntu-18.04
+ - CC: clang-7
CXX: clang++-7
PackageDeps: clang-7
platform_file: include $(ACE_ROOT)/include/makeinclude/platform_linux_clang.GNU
- imagename: ubuntu-18.04
- - name: CLANG8
- CC: clang-8
+ os: ubuntu-18.04
+ - CC: clang-8
CXX: clang++-8
PackageDeps: clang-8
platform_file: include $(ACE_ROOT)/include/makeinclude/platform_linux_clang.GNU
- imagename: ubuntu-18.04
- - name: CLANG9
- CC: clang-9
+ os: ubuntu-18.04
+ - CC: clang-9
CXX: clang++-9
PackageDeps: clang-9
Repo: llvm-toolchain-$(lsb_release -cs)-9
platform_file: include $(ACE_ROOT)/include/makeinclude/platform_linux_clang.GNU
- imagename: ubuntu-18.04
- - name: CLANG10
- CC: clang-10
+ os: ubuntu-18.04
+ - CC: clang-10
CXX: clang++-10
PackageDeps: clang-10
Repo: llvm-toolchain-$(lsb_release -cs)-10
platform_file: include $(ACE_ROOT)/include/makeinclude/platform_linux_clang.GNU
- imagename: ubuntu-20.04
- runs-on: ${{ matrix.imagename }}
+ os: ubuntu-20.04
+ runs-on: ${{ matrix.os }}
+ name: ${{ matrix.os }} ${{ matrix.CXX }}
env:
ACE_ROOT: ${{ github.workspace }}/ACE
TAO_ROOT: ${{ github.workspace }}/TAO
diff --git a/.github/workflows/macosx.yml b/.github/workflows/macosx.yml
index 1164edebe9d..71f0fc92009 100644
--- a/.github/workflows/macosx.yml
+++ b/.github/workflows/macosx.yml
@@ -10,14 +10,11 @@ jobs:
build:
strategy:
matrix:
- name: [
- macos1015
- ]
include:
- - name: macos1015
+ - os: macos-10.15
platform_file: include $(ACE_ROOT)/include/makeinclude/platform_macosx.GNU
- imagename: macos-10.15
- runs-on: ${{ matrix.imagename }}
+ runs-on: ${{ matrix.os }}
+ name: ${{ matrix.os }}
env:
ACE_ROOT: ${{ github.workspace }}/ACE
TAO_ROOT: ${{ github.workspace }}/TAO
diff --git a/TAO/tao/Invocation_Retry_State.cpp b/TAO/tao/Invocation_Retry_State.cpp
index 9ca1994e8b7..6e3cd989696 100644
--- a/TAO/tao/Invocation_Retry_State.cpp
+++ b/TAO/tao/Invocation_Retry_State.cpp
@@ -73,7 +73,6 @@ namespace
result);
}
-
}
TAO::Invocation_Retry_State::Invocation_Retry_State (TAO_Stub &stub)
diff --git a/TAO/tao/Invocation_Retry_State.h b/TAO/tao/Invocation_Retry_State.h
index 49ba8dc3db7..1e235d124ca 100644
--- a/TAO/tao/Invocation_Retry_State.h
+++ b/TAO/tao/Invocation_Retry_State.h
@@ -80,14 +80,12 @@ namespace TAO
void sleep () const;
private:
-
typedef ACE_Array_Map<int, int> Ex_Count_Map;
Ex_Count_Map ex_count_map_;
int forward_on_reply_closed_count_;
Invocation_Retry_Params retry_params_;
bool forward_on_exception_limit_used_;
};
-
}
TAO_END_VERSIONED_NAMESPACE_DECL