Skip to content
This repository was archived by the owner on Jul 18, 2023. It is now read-only.

Commit 94b7d12

Browse files
authored
Merge pull request #261 from mtconnect/docker_ubuntu_issues
Fixed mruby issues–added autoconf and automake to apt install
2 parents 21594c2 + 67750ce commit 94b7d12

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ FROM os AS build
4040
RUN apt-get clean \
4141
&& apt-get update \
4242
&& apt-get install -y \
43-
build-essential python3.9 python3-pip git cmake make ruby rake \
43+
build-essential python3.9 python3-pip git cmake make ruby rake autoconf automake \
4444
&& pip install conan -v "conan==1.59.0"
4545

4646
# make an agent directory and cd into it
@@ -70,7 +70,7 @@ RUN conan export conan/mqtt_cpp \
7070
-o with_ruby=$WITH_RUBY
7171

7272
# compile source (~20mins - 4hrs for qemu)
73-
RUN conan build . -bf build
73+
RUN conan build . -bf build
7474

7575
# ---------------------------------------------------------------------
7676
# release

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ before_build:
5656
if [[ $APPVEYOR_BUILD_WORKER_IMAGE = "Ubuntu2004" ]]
5757
then
5858
sudo apt update
59-
sudo apt install -y build-essential cmake gcc-11 g++-11 python3
59+
sudo apt install -y build-essential cmake gcc-11 g++-11 python3 autoconf automake
6060
export CONAN_PROFILE=conan/profiles/gcc-appveyor
6161
elif [[ $APPVEYOR_BUILD_WORKER_IMAGE = "macOS-Monterey" ]]
6262
then

0 commit comments

Comments
 (0)