ci: gcc-10.2 CI added

This commit is contained in:
Mateusz Pusz
2020-12-24 09:56:56 +01:00
parent 7135148a3c
commit 2f4e308ea8

View File

@@ -48,6 +48,12 @@ jobs:
os: ubuntu-20.04, os: ubuntu-20.04,
compiler: { type: GCC, version: 10, cc: "gcc-10", cxx: "g++-10" } compiler: { type: GCC, version: 10, cc: "gcc-10", cxx: "g++-10" }
} }
- {
name: "Ubuntu GCC 10.2.0",
os: ubuntu-20.04,
compiler: { type: GCC, version: 10, cc: "gcc-10", cxx: "g++-10" },
docker_image: conanio/gcc10
}
build_type: [ "Release", "Debug" ] build_type: [ "Release", "Debug" ]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@@ -90,7 +96,7 @@ jobs:
conan profile update settings.compiler.libcxx=libc++ default conan profile update settings.compiler.libcxx=libc++ default
fi fi
conan profile show default conan profile show default
- name: Run conan-package-tools - name: Run Conan Package Tools
env: env:
CONAN_USERNAME: mpusz CONAN_USERNAME: mpusz
CONAN_OPTIONS: mp-units:build_docs=False CONAN_OPTIONS: mp-units:build_docs=False
@@ -102,5 +108,6 @@ jobs:
CC: ${{ matrix.config.compiler.cc }} CC: ${{ matrix.config.compiler.cc }}
CXX: ${{ matrix.config.compiler.cxx }} CXX: ${{ matrix.config.compiler.cxx }}
CONAN_${{ matrix.config.compiler.type }}_VERSIONS: ${{ matrix.config.compiler.version }} CONAN_${{ matrix.config.compiler.type }}_VERSIONS: ${{ matrix.config.compiler.version }}
CONAN_DOCKER_IMAGE: ${{ matrix.config.docker_image }}
run: | run: |
python build.py python build.py