Skip to content

Commit

Permalink
[Fix] Build of docker and linux (#440)
Browse files Browse the repository at this point in the history
Fixed the compilation in the docker environment and the error that occurred with linux when it was going to compile on a new "VM" machine.

What happened is that the protobuf was updated and our proto files were generated in an old version, with this change they are ready to work with the latest version of the protobuf made available by vcpkg

Note: vcpkg needs to be updated to the most current version for it to work properly
  • Loading branch information
beats-dh committed Jul 17, 2022
1 parent 13327c3 commit 90e7561
Show file tree
Hide file tree
Showing 6 changed files with 4,258 additions and 4,025 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analysis-codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
if: ${{ matrix.language == 'cpp' }}
uses: lukka/run-vcpkg@v10
with:
vcpkgGitCommitId: 8d41d43e1f7f5933622b02e16430312da649361e
vcpkgGitCommitId: 8b62d95a81afcb9efe74bebeb62f04c1e0e2a003

- name: Get latest CMake and ninja
if: ${{ matrix.language == 'cpp' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/analysis-sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Restore artifacts, or setup vcpkg (do not install any package)
uses: lukka/run-vcpkg@v10
with:
vcpkgGitCommitId: 8d41d43e1f7f5933622b02e16430312da649361e
vcpkgGitCommitId: 8b62d95a81afcb9efe74bebeb62f04c1e0e2a003

- name: Set up JDK 11
uses: actions/setup-java@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Restore artifacts and install vcpkg
uses: lukka/run-vcpkg@v10
with:
vcpkgGitCommitId: 8d41d43e1f7f5933622b02e16430312da649361e
vcpkgGitCommitId: 8b62d95a81afcb9efe74bebeb62f04c1e0e2a003

- name: Get latest CMake and ninja
uses: lukka/get-cmake@latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Restore artifacts and install vcpkg
uses: lukka/run-vcpkg@v10
with:
vcpkgGitCommitId: 8d41d43e1f7f5933622b02e16430312da649361e
vcpkgGitCommitId: 8b62d95a81afcb9efe74bebeb62f04c1e0e2a003

- name: Get latest CMake and ninja
uses: lukka/get-cmake@latest
Expand Down

0 comments on commit 90e7561

Please sign in to comment.