Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ script:
- git clone --depth 1 https://github.com/RIOT-OS/RIOT -b ${RIOT_BRANCH}
- DOCKER_IMAGE=riotdocker:latest
BUILD_IN_DOCKER=1
BOARDS="arduino-uno esp32-wroom-32 hifive1 msb-430h native pic32-wifire samr21-xpro"
BOARDS="arduino-uno esp32-wroom-32 hifive1 msb-430h native pic32-wifire samr21-xpro nucleo-l011k4"
make -CRIOT/examples/hello-world buildtest
- DOCKER_IMAGE=riotdocker:latest
TOOLCHAIN=llvm
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ RUN echo 'Installing ESP32 toolchain' >&2 && \
ENV PATH $PATH:/opt/esp/xtensa-esp32-elf/bin

ARG PICOLIBC_REPO=https://github.com/keith-packard/picolibc
ARG PICOLIBC_TAG=1.4.6
ARG PICOLIBC_TAG=1.5.1
ARG PICOLIBC_URL=${PICOLIBC_REPO}/archive/${PICOLIBC_TAG}.tar.gz
ARG PICOLIBC_ARCHIVE=${PICOLIBC_TAG}.tar.gz

Expand All @@ -254,10 +254,10 @@ RUN cd /usr/src/picolibc/picolibc-${PICOLIBC_TAG} && \
meson .. -Dtests=true -Dmultilib=false -Dincludedir=picolibc/riscv-none-embed/include -Dlibdir=picolibc/riscv-none-embed/lib --cross-file ../cross-riscv-none-embed.txt && \
ninja && ninja install && \
cd ../build-esp32 && \
sh ../do-esp32-configure && \
sh ../scripts/do-esp32-configure && \
ninja && ninja install && \
cd ../build-arm && \
sh ../do-arm-configure && \
sh ../scripts/do-arm-configure && \
ninja && ninja install

# No need to keep the sources around
Expand Down