-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull request #205: Feature/RUM-15798 updating openkit native libcurl …
…to 8.4.0 2 Merge in OP/openkit-native from feature/RUM-15798-updating-openkit-native-libcurl-to-8.4.0-2 to main * commit 'c8ca2362b932e471ddd8e8ce631e252851c03ebe': RUM-15798 Updating docs + github actions RUM-15798 Changelog + Readme RUM-15798 Commenting Libcurl Targets RUM-15798 googletest to 1.12.1 RUM-15798 YAML Update RUM-15798 ZLib 1.3 RUM-15798 Updating to curl 8.4 GitOrigin-RevId: 88d264f6d4c3c93f689c068e9f6f2b61b21fe104
- Loading branch information
1 parent
0349f4b
commit 64f72dc
Showing
5,712 changed files
with
511,354 additions
and
486,072 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
|
||
name: Linux Build & Test | ||
|
||
on: | ||
|
@@ -7,42 +8,42 @@ on: | |
jobs: | ||
build: | ||
name: ${{matrix.NAME}} | ||
runs-on: ubuntu-18.04 | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
include: | ||
- BUILD_TYPE: "Release" | ||
BUILD_SHARED_LIBS: "On" | ||
NAME: "g++5 Release Dynamic x64" | ||
CC: "gcc-5" | ||
CXX: "g++-5" | ||
NAME: "g++9.3 Release Dynamic x64" | ||
CC: "gcc" | ||
CXX: "g++" | ||
- BUILD_TYPE: "Release" | ||
BUILD_SHARED_LIBS: "Off" | ||
NAME: "g++5 Release Static x64" | ||
CC: "gcc-5" | ||
CXX: "g++-5" | ||
NAME: "g++9.3 Release Static x64" | ||
CC: "gcc" | ||
CXX: "g++" | ||
- BUILD_TYPE: "Release" | ||
BUILD_SHARED_LIBS: "On" | ||
NAME: "clang 6.0 Release Dynamic x64" | ||
CC: "clang-6.0" | ||
CXX: "clang++-6.0" | ||
NAME: "clang 10.0 Release Dynamic x64" | ||
CC: "clang" | ||
CXX: "clang++" | ||
- BUILD_TYPE: "Release" | ||
BUILD_SHARED_LIBS: "Off" | ||
NAME: "clang 6.0 Release Static x64" | ||
CC: "clang-6.0" | ||
CXX: "clang++-6.0" | ||
NAME: "clang 10.0 Release Static x64" | ||
CC: "clang" | ||
CXX: "clang++" | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install Compiler | ||
run: | | ||
sudo apt update | ||
sudo apt install ${{ matrix.CC }} ${{ matrix.CXX }} | ||
|
||
- name: Create Working directory | ||
run: mkdir -p build | ||
|
||
- name: Setup cmake | ||
uses: jwlawson/[email protected] | ||
with: | ||
cmake-version: '3.19.1' | ||
|
||
- name: CMake Generation | ||
working-directory: ${{github.workspace}}/build | ||
run: cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=${{matrix.BUILD_TYPE}} -DOPENKIT_BUILD_TESTS=ON -DBUILD_DOC=OFF -DBUILD_SHARED_LIBS=${{matrix.BUILD_SHARED_LIBS}} .. || exit 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.