Skip to content

Commit

Permalink
fix: move all TC files to ci/toolchains
Browse files Browse the repository at this point in the history
  • Loading branch information
diogomatsubara committed Oct 25, 2024
1 parent cbea297 commit a4c9270
Show file tree
Hide file tree
Showing 19 changed files with 9 additions and 44 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
id: build
shell: bash
run: |
toolchain_file=$(readlink -f TC-${{ matrix.build.target }}.cmake)
toolchain_file=$(readlink -f ci/toolchains/TC-${{ matrix.build.target }}.cmake)
mkdir -p build && cd build
cmake .. -DZENOHC_CUSTOM_TARGET=${{ matrix.build.target }} -DCMAKE_TOOLCHAIN_FILE="${toolchain_file}" -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=Release -DZENOHC_BUILD_WITH_UNSTABLE_API=ON -DZENOHC_BUILD_WITH_SHARED_MEMORY=ON
cmake --build . --config Release
Expand Down
5 changes: 0 additions & 5 deletions TC-aarch64-unknown-linux-gnu.cmake

This file was deleted.

5 changes: 0 additions & 5 deletions TC-aarch64-unknown-linux-musl.cmake

This file was deleted.

4 changes: 0 additions & 4 deletions TC-arm-unknown-linux-gnueabi.cmake

This file was deleted.

4 changes: 0 additions & 4 deletions TC-armv7-unknown-linux-gnueabihf.cmake

This file was deleted.

5 changes: 0 additions & 5 deletions TC-x86_64-pc-windows-gnu.cmake

This file was deleted.

5 changes: 0 additions & 5 deletions TC-x86_64-unknown-linux-gnu.cmake

This file was deleted.

3 changes: 0 additions & 3 deletions TC-x86_64-unknown-linux-musl.cmake

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion ci/toolchains/TC-aarch64-unknown-linux-gnu.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR aarch64)
set(ZENOHC_CUSTOM_TARGET aarch64-unknown-linux-gnu)
set(CMAKE_C_COMPILER aarch64-linux-gnu-gcc)
set(CMAKE_CXX_COMPILER aarch64-linux-gnu-g++)
set(CMAKE_CXX_COMPILER aarch64-linux-gnu-g++)
2 changes: 1 addition & 1 deletion ci/toolchains/TC-aarch64-unknown-linux-musl.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR aarch64)
set(ZENOHC_CUSTOM_TARGET aarch64-unknown-linux-musl)
set(CMAKE_C_COMPILER aarch64-linux-musl-gcc)
set(CMAKE_CXX_COMPILER aarch64-linux-musl-g++)
set(CMAKE_CXX_COMPILER aarch64-linux-musl-g++)
3 changes: 1 addition & 2 deletions ci/toolchains/TC-arm-unknown-linux-gnueabi.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR arm)
set(ZENOHC_CUSTOM_TARGET arm-unknown-linux-gnueabi)
set(CMAKE_C_COMPILER arm-linux-gnueabi-gcc)
set(CMAKE_CXX_COMPILER arm-linux-gnueabi-g++)
set(CMAKE_C_COMPILER arm-linux-gnueabi-gcc)
File renamed without changes.
3 changes: 1 addition & 2 deletions ci/toolchains/TC-armv7-unknown-linux-gnueabihf.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR armv7)
set(ZENOHC_CUSTOM_TARGET armv7-unknown-linux-gnueabihf)
set(CMAKE_C_COMPILER armv7-linux-gnueabihf-gcc)
set(CMAKE_CXX_COMPILER armv7-linux-gnueabihf-g++)
set(CMAKE_C_COMPILER armv7-linux-gnueabihf-gcc)
File renamed without changes.
2 changes: 1 addition & 1 deletion ci/toolchains/TC-x86_64-pc-windows-gnu.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ set(CMAKE_SYSTEM_NAME Windows)
set(CMAKE_SYSTEM_PROCESSOR x86_64)
set(ZENOHC_CUSTOM_TARGET x86_64-pc-windows-gnu)
set(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc)
set(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++)
set(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++)
File renamed without changes.
4 changes: 2 additions & 2 deletions ci/toolchains/TC-x86_64-unknown-linux-gnu.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR x86_64)
set(ZENOHC_CUSTOM_TARGET x86_64-unknown-linux-gnu)
set(CMAKE_C_COMPILER x86_64-unknown-linux-gnu-gcc)
set(CMAKE_CXX_COMPILER x86_64-unknown-linux-gnu-g++)
set(CMAKE_C_COMPILER x86_64-linux-gnu-gcc)
set(CMAKE_CXX_COMPILER x86_64-linux-gnu-g++)
4 changes: 1 addition & 3 deletions ci/toolchains/TC-x86_64-unknown-linux-musl.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR x86_64)
set(ZENOHC_CUSTOM_TARGET x86_64-unknown-linux-musl)
set(CMAKE_C_COMPILER x86_64-linux-musl-gcc)
set(CMAKE_CXX_COMPILER x86_64-linux-musl-g++)
set(ZENOHC_CUSTOM_TARGET x86_64-unknown-linux-musl)

0 comments on commit a4c9270

Please sign in to comment.