Skip to content

Commit

Permalink
add fleet-http-client
Browse files Browse the repository at this point in the history
  • Loading branch information
Melky-Phoe committed Mar 26, 2024
1 parent a16d112 commit ac22f7b
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 21 deletions.
2 changes: 1 addition & 1 deletion example/docker/debian11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN echo root:1234 | chpasswd

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
build-essential binutils lsb-release make git libssl-dev openssh-server wget && \
build-essential binutils lsb-release make git libssl-dev openssh-server wget patchelf && \
rm -rf /var/lib/apt/lists/*

RUN wget "https://github.com/Kitware/CMake/releases/download/v3.28.0/cmake-3.28.0-linux-x86_64.sh" -O cmake.sh && \
Expand Down
2 changes: 1 addition & 1 deletion example/docker/debian12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN echo root:1234 | chpasswd

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
build-essential binutils lsb-release make git libssl-dev openssh-server wget && \
build-essential binutils lsb-release make git libssl-dev openssh-server wget patchelf && \
rm -rf /var/lib/apt/lists/*

RUN wget "https://github.com/Kitware/CMake/releases/download/v3.25.2/cmake-3.25.2-linux-x86_64.sh" -O cmake.sh && \
Expand Down
2 changes: 1 addition & 1 deletion example/docker/fleet-os-2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN echo root:1234 | chpasswd
#
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
build-essential xz-utils sed git libssl-dev openssh-server wget unzip python3 make&& \
build-essential xz-utils sed git libssl-dev openssh-server wget unzip python3 make patchelf && \
rm -rf /var/lib/apt/lists/*

RUN wget "https://github.com/Kitware/CMake/releases/download/v3.22.2/cmake-3.22.2-linux-x86_64.sh" -O cmake.sh && \
Expand Down
2 changes: 1 addition & 1 deletion example/docker/ubuntu2004/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN echo root:1234 | chpasswd

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
build-essential cmake make libssl-dev coreutils lsb-release wget g++-10 gcc-10 && \
build-essential make libssl-dev coreutils lsb-release wget g++-10 gcc-10 patchelf && \
rm -rf /var/lib/apt/lists/*

RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 60 --slave /usr/bin/g++ g++ /usr/bin/g++-10
Expand Down
2 changes: 1 addition & 1 deletion example/docker/ubuntu2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN echo root:1234 | chpasswd

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
coreutils lsb-release build-essential openssh-server git libssl-dev wget && \
coreutils lsb-release build-essential openssh-server git libssl-dev wget patchelf && \
rm -rf /var/lib/apt/lists/*

RUN wget "https://github.com/Kitware/CMake/releases/download/v3.28.0/cmake-3.28.0-linux-x86_64.sh" -O cmake.sh && \
Expand Down
2 changes: 1 addition & 1 deletion example/docker/ubuntu2304/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN echo root:1234 | chpasswd

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
coreutils lsb-release build-essential openssh-server git libssl-dev wget && \
coreutils lsb-release build-essential openssh-server git libssl-dev wget patchelf && \
rm -rf /var/lib/apt/lists/*

RUN wget "https://github.com/Kitware/CMake/releases/download/v3.28.0/cmake-3.28.0-linux-x86_64.sh" -O cmake.sh && \
Expand Down
2 changes: 1 addition & 1 deletion example/docker/ubuntu2310/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN echo root:1234 | chpasswd

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
coreutils lsb-release build-essential openssh-server git libssl-dev wget && \
coreutils lsb-release build-essential openssh-server git libssl-dev wget patchelf && \
rm -rf /var/lib/apt/lists/*

RUN wget "https://github.com/Kitware/CMake/releases/download/v3.28.0/cmake-3.28.0-linux-x86_64.sh" -O cmake.sh && \
Expand Down
14 changes: 8 additions & 6 deletions example/package/cpprestsdk/cpprestsdk_debug.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
{
"Env": {},
"DependsOn": [],
"Env": { },
"DependsOn": [ "zlib", "boost" ],
"Git": {
"URI": "git@github.com:microsoft/cpprestsdk.git",
"Revision": "v2.10.15"
"URI": "https://github.com/bringauto/cpprestsdk.git",
"Revision": "v2.10.20"
},
"Build": {
"CMake": {
"Defines": {
"CMAKE_BUILD_TYPE": "Debug"
"CMAKE_BUILD_TYPE": "Debug",
"BUILD_TESTS": "OFF",
"BUILD_SAMPLES": "OFF"
}
}
},
"Package": {
"Name": "cpprestsdk",
"VersionTag": "v2.10.15",
"VersionTag": "v2.10.20",
"PlatformString": {
"Mode": "auto"
},
Expand Down
14 changes: 8 additions & 6 deletions example/package/cpprestsdk/cpprestsdk_release.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
{
"Env": {},
"DependsOn": [],
"Env": { },
"DependsOn": [ "zlib", "boost" ],
"Git": {
"URI": "git@github.com:microsoft/cpprestsdk.git",
"Revision": "v2.10.15"
"URI": "https://github.com/bringauto/cpprestsdk.git",
"Revision": "v2.10.20"
},
"Build": {
"CMake": {
"Defines": {
"CMAKE_BUILD_TYPE": "Release"
"CMAKE_BUILD_TYPE": "Release",
"BUILD_TESTS": "OFF",
"BUILD_SAMPLES": "OFF"
}
}
},
"Package": {
"Name": "cpprestsdk",
"VersionTag": "v2.10.15",
"VersionTag": "v2.10.20",
"PlatformString": {
"Mode": "auto"
},
Expand Down
1 change: 0 additions & 1 deletion example/package/protozero/protozero_debug.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
"ubuntu2204",
"ubuntu2004",
"debian11",
"fleet-os-2",
"debian12",
"ubuntu2304",
"ubuntu2310"
Expand Down
1 change: 0 additions & 1 deletion example/package/protozero/protozero_release.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
"ubuntu2204",
"ubuntu2004",
"debian11",
"fleet-os-2",
"debian12",
"ubuntu2304",
"ubuntu2310"
Expand Down

0 comments on commit ac22f7b

Please sign in to comment.