Skip to content

Commit c924ec8

Browse files
committed
container
1 parent 22ad1b7 commit c924ec8

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

.github/workflows/container_build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,13 @@ jobs:
1616
uses: actions/checkout@v3
1717
with:
1818
path: opentelemetry-matlab
19-
- name: Install compiler, cmake, and Git
19+
- name: Install compiler, and Git
2020
run: apt update && apt install -y build-essential cmake git curl pkg-config zip python3
21-
- name: Install ninja-build
22-
run: apt-get install ninja-build
21+
- name: Install cmake and ninja
22+
uses: lukka/get-cmake@latest
23+
with:
24+
cmakeVersion: 3.22.1
25+
ninjaVersion: 1.11.1
2326
- name: Install MATLAB
2427
uses: matlab-actions/setup-matlab@v2
2528
with:

CMakeLists.txt

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -135,15 +135,6 @@ FetchContent_MakeAvailable(
135135
${LIBMEXCLASS_FETCH_CONTENT_NAME}
136136
)
137137

138-
# FIXME: debug code
139-
FetchContent_GetProperties(${LIBMEXCLASS_FETCH_CONTENT_NAME})
140-
if(${LIBMEXCLASS_FETCH_CONTENT_NAME}_POPULATED)
141-
message(STATUS "Already loaded.")
142-
else()
143-
message(STATUS "Not loaded.")
144-
endif()
145-
146-
147138
# ###########################
148139
# OpenTelemetry-cpp
149140
# ###########################

0 commit comments

Comments
 (0)