feat(list): add generic list implementation #1

Merged
rick merged 10 commits from feature/list into develop 2022-07-26 22:45:22 +02:00
2 changed files with 5 additions and 3 deletions
Showing only changes of commit c45818df33 - Show all commits

View File

@ -38,7 +38,7 @@ name: tag
steps:
- name: Build release
image: registry.riba-interactive.de/alpine-build:2
image: registry.riba-interactive.de/alpine-build:3
commands:
- cmake -S. -Bcmake-build-ci -DCMAKE_BUILD_TYPE=Release
- cd cmake-build-ci
@ -58,7 +58,7 @@ name: Build and Test
steps:
- name: Build and run tests
image: registry.riba-interactive.de/alpine-build:2
image: registry.riba-interactive.de/alpine-build:3
commands:
- cmake -S. -Bcmake-build-ci -DCMAKE_BUILD_TYPE=Debug -DENABLE_TEST_COVERAGE=on
- cd cmake-build-ci

View File

@ -1,9 +1,11 @@
FROM alpine:3.16.0
RUN echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories; \
RUN echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories; \
apk --no-cache add \
bison \
build-base \
cmake \
flex \
git \
ncurses-dev\
lcov@testing