kalnagy | 303e57c | 2019-06-28 15:28:35 +0200 | [diff] [blame] | 1 | # |
| 2 | #================================================================================== |
| 3 | # Copyright (c) 2019 AT&T Intellectual Property. |
| 4 | # Copyright (c) 2019 Nokia |
| 5 | # |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | #================================================================================== |
| 18 | # |
| 19 | # |
| 20 | # Abstract: Builds a container to compile Subscription Manager's code |
| 21 | # Date: 28 May 2019 |
| 22 | # |
Juha Hyttinen | f44377d | 2020-02-12 10:18:40 +0200 | [diff] [blame^] | 23 | |
| 24 | ########################################################### |
| 25 | # |
| 26 | ########################################################### |
| 27 | FROM nexus3.o-ran-sc.org:10004/bldr-ubuntu18-c-go:3-u18.04-nng as submgrcore |
kalnagy | 303e57c | 2019-06-28 15:28:35 +0200 | [diff] [blame] | 28 | |
Juha Hyttinen | 01a4c49 | 2020-02-04 19:29:26 +0200 | [diff] [blame] | 29 | RUN apt update && apt install -y iputils-ping net-tools curl tcpdump gdb valgrind |
Juha Hyttinen | ff8dccd | 2019-12-10 14:34:07 +0200 | [diff] [blame] | 30 | |
kalnagy | e001868 | 2019-09-26 16:28:25 +0200 | [diff] [blame] | 31 | WORKDIR /tmp |
kalnagy | 303e57c | 2019-06-28 15:28:35 +0200 | [diff] [blame] | 32 | |
Juha Hyttinen | e406a34 | 2020-01-13 13:02:26 +0200 | [diff] [blame] | 33 | ARG RMRVERSION=1.13.1 |
kalnagy | 303e57c | 2019-06-28 15:28:35 +0200 | [diff] [blame] | 34 | # Install RMr shared library |
Juha Hyttinen | e406a34 | 2020-01-13 13:02:26 +0200 | [diff] [blame] | 35 | RUN wget --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr_${RMRVERSION}_amd64.deb/download.deb && dpkg -i rmr_${RMRVERSION}_amd64.deb && rm -rf rmr_${RMRVERSION}_amd64.deb |
kalnagy | 303e57c | 2019-06-28 15:28:35 +0200 | [diff] [blame] | 36 | # Install RMr development header files |
Juha Hyttinen | e406a34 | 2020-01-13 13:02:26 +0200 | [diff] [blame] | 37 | RUN wget --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr-dev_${RMRVERSION}_amd64.deb/download.deb && dpkg -i rmr-dev_${RMRVERSION}_amd64.deb && rm -rf rmr-dev_${RMRVERSION}_amd64.deb |
kalnagy | 303e57c | 2019-06-28 15:28:35 +0200 | [diff] [blame] | 38 | |
kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 39 | # "Installing Swagger" |
| 40 | RUN cd /usr/local/go/bin \ |
| 41 | && wget --quiet https://github.com/go-swagger/go-swagger/releases/download/v0.19.0/swagger_linux_amd64 \ |
| 42 | && mv swagger_linux_amd64 swagger \ |
| 43 | && chmod +x swagger |
| 44 | |
kalnagy | e001868 | 2019-09-26 16:28:25 +0200 | [diff] [blame] | 45 | |
Juha Hyttinen | 01a4c49 | 2020-02-04 19:29:26 +0200 | [diff] [blame] | 46 | ENV GOPATH=/root/.go |
| 47 | ENV PATH=$PATH:/root/.go/bin |
| 48 | RUN /usr/local/go/bin/go get -u github.com/go-delve/delve/cmd/dlv |
| 49 | |
kalnagy | e001868 | 2019-09-26 16:28:25 +0200 | [diff] [blame] | 50 | WORKDIR /opt/submgr |
kalnagy | e001868 | 2019-09-26 16:28:25 +0200 | [diff] [blame] | 51 | |
Juha Hyttinen | f44377d | 2020-02-12 10:18:40 +0200 | [diff] [blame^] | 52 | ########################################################### |
| 53 | # |
| 54 | ########################################################### |
| 55 | FROM submgrcore as submgre2apbuild |
Juha Hyttinen | ff8dccd | 2019-12-10 14:34:07 +0200 | [diff] [blame] | 56 | |
Juha Hyttinen | f44377d | 2020-02-12 10:18:40 +0200 | [diff] [blame^] | 57 | |
Juha Hyttinen | ff8dccd | 2019-12-10 14:34:07 +0200 | [diff] [blame] | 58 | ENV CFLAGS="-DASN_DISABLE_OER_SUPPORT" |
| 59 | ENV CGO_CFLAGS="-DASN_DISABLE_OER_SUPPORT" |
| 60 | |
| 61 | COPY 3rdparty 3rdparty |
| 62 | RUN cd 3rdparty/libe2ap && \ |
Juha Hyttinen | 01a4c49 | 2020-02-04 19:29:26 +0200 | [diff] [blame] | 63 | gcc -c ${CFLAGS} -I. -g -fPIC *.c && \ |
| 64 | gcc *.o -g -shared -o libe2ap.so && \ |
Juha Hyttinen | ff8dccd | 2019-12-10 14:34:07 +0200 | [diff] [blame] | 65 | cp libe2ap.so /usr/local/lib/ && \ |
| 66 | cp *.h /usr/local/include/ && \ |
kalnagy | e001868 | 2019-09-26 16:28:25 +0200 | [diff] [blame] | 67 | ldconfig |
| 68 | |
Juha Hyttinen | ff8dccd | 2019-12-10 14:34:07 +0200 | [diff] [blame] | 69 | COPY e2ap e2ap |
| 70 | RUN cd e2ap/libe2ap_wrapper && \ |
Juha Hyttinen | 01a4c49 | 2020-02-04 19:29:26 +0200 | [diff] [blame] | 71 | gcc -c ${CFLAGS} -g -fPIC *.c && \ |
| 72 | gcc *.o -g -shared -o libe2ap_wrapper.so && \ |
Juha Hyttinen | ff8dccd | 2019-12-10 14:34:07 +0200 | [diff] [blame] | 73 | cp libe2ap_wrapper.so /usr/local/lib/ && \ |
| 74 | cp *.h /usr/local/include/ && \ |
| 75 | ldconfig |
| 76 | |
| 77 | # unittest |
| 78 | RUN cd e2ap && /usr/local/go/bin/go test -v ./pkg/conv |
| 79 | RUN cd e2ap && /usr/local/go/bin/go test -v ./pkg/e2ap_wrapper |
| 80 | |
| 81 | # test formating (not important) |
| 82 | RUN cd e2ap && test -z "$(/usr/local/go/bin/gofmt -l pkg/conv/*.go)" |
| 83 | RUN cd e2ap && test -z "$(/usr/local/go/bin/gofmt -l pkg/e2ap_wrapper/*.go)" |
| 84 | RUN cd e2ap && test -z "$(/usr/local/go/bin/gofmt -l pkg/e2ap/*.go)" |
| 85 | RUN cd e2ap && test -z "$(/usr/local/go/bin/gofmt -l pkg/e2ap/e2ap_tests/*.go)" |
| 86 | |
Juha Hyttinen | 5504022 | 2020-01-16 09:41:04 +0200 | [diff] [blame] | 87 | |
Juha Hyttinen | f44377d | 2020-02-12 10:18:40 +0200 | [diff] [blame^] | 88 | ########################################################### |
| 89 | # |
| 90 | ########################################################### |
| 91 | FROM submgre2apbuild as submgrbuild |
Juha Hyttinen | ff8dccd | 2019-12-10 14:34:07 +0200 | [diff] [blame] | 92 | # |
| 93 | # |
| 94 | # |
| 95 | COPY go.mod go.mod |
| 96 | COPY go.sum go.sum |
| 97 | |
| 98 | RUN /usr/local/go/bin/go mod download |
| 99 | |
| 100 | # |
| 101 | # |
| 102 | # |
Juha Hyttinen | f44377d | 2020-02-12 10:18:40 +0200 | [diff] [blame^] | 103 | RUN mkdir pkg |
kalnagy | e001868 | 2019-09-26 16:28:25 +0200 | [diff] [blame] | 104 | COPY api api |
| 105 | |
Juha Hyttinen | f44377d | 2020-02-12 10:18:40 +0200 | [diff] [blame^] | 106 | |
| 107 | ARG RTMGRVERSION=cd7867c8f527f46fd8702b0b8d6b380a8e134bea |
| 108 | |
kalnagy | e001868 | 2019-09-26 16:28:25 +0200 | [diff] [blame] | 109 | RUN git clone "https://gerrit.o-ran-sc.org/r/ric-plt/rtmgr" \ |
Juha Hyttinen | f44377d | 2020-02-12 10:18:40 +0200 | [diff] [blame^] | 110 | && git -C "rtmgr" checkout $RTMGRVERSION \ |
kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 111 | && cp rtmgr/api/routing_manager.yaml api/ \ |
| 112 | && rm -rf rtmgr |
| 113 | |
Juha Hyttinen | f44377d | 2020-02-12 10:18:40 +0200 | [diff] [blame^] | 114 | |
kalnagy | e001868 | 2019-09-26 16:28:25 +0200 | [diff] [blame] | 115 | RUN mkdir -p /root/go && \ |
| 116 | /usr/local/go/bin/swagger generate client -f api/routing_manager.yaml -t pkg/ -m rtmgr_models -c rtmgr_client |
| 117 | |
Juha Hyttinen | ff8dccd | 2019-12-10 14:34:07 +0200 | [diff] [blame] | 118 | # |
| 119 | # |
| 120 | # |
kalnagy | e001868 | 2019-09-26 16:28:25 +0200 | [diff] [blame] | 121 | COPY pkg pkg |
| 122 | COPY cmd cmd |
| 123 | |
kalnagy | e001868 | 2019-09-26 16:28:25 +0200 | [diff] [blame] | 124 | RUN mkdir -p /opt/bin && \ |
Juha Hyttinen | ff8dccd | 2019-12-10 14:34:07 +0200 | [diff] [blame] | 125 | /usr/local/go/bin/go build -o /opt/bin/submgr cmd/submgr.go && \ |
| 126 | mkdir -p /opt/build/container/usr/local |
kalnagy | 303e57c | 2019-06-28 15:28:35 +0200 | [diff] [blame] | 127 | |
Juha Hyttinen | ff8dccd | 2019-12-10 14:34:07 +0200 | [diff] [blame] | 128 | |
| 129 | RUN /usr/local/go/bin/go mod tidy |
| 130 | |
| 131 | # unittest |
| 132 | COPY test/config-file.json test/config-file.json |
| 133 | ENV CFG_FILE=/opt/submgr/test/config-file.json |
Juha Hyttinen | e406a34 | 2020-01-13 13:02:26 +0200 | [diff] [blame] | 134 | |
Juha Hyttinen | 01a4c49 | 2020-02-04 19:29:26 +0200 | [diff] [blame] | 135 | RUN /usr/local/go/bin/go test -test.coverprofile /tmp/submgr_cover.out -count=1 -v ./pkg/control |
| 136 | |
| 137 | #-c -o submgr_test |
| 138 | #RUN ./submgr_test -test.coverprofile /tmp/submgr_cover.out |
Juha Hyttinen | e406a34 | 2020-01-13 13:02:26 +0200 | [diff] [blame] | 139 | |
| 140 | RUN /usr/local/go/bin/go tool cover -html=/tmp/submgr_cover.out -o /tmp/submgr_cover.html |
Juha Hyttinen | ff8dccd | 2019-12-10 14:34:07 +0200 | [diff] [blame] | 141 | |
| 142 | # test formating (not important) |
| 143 | RUN test -z "$(/usr/local/go/bin/gofmt -l pkg/control/*.go)" |
Juha Hyttinen | 5f8ffa0 | 2020-02-06 15:28:59 +0200 | [diff] [blame] | 144 | RUN test -z "$(/usr/local/go/bin/gofmt -l pkg/teststub/*.go)" |
| 145 | RUN test -z "$(/usr/local/go/bin/gofmt -l pkg/teststubdummy/*.go)" |
| 146 | RUN test -z "$(/usr/local/go/bin/gofmt -l pkg/teststube2ap/*.go)" |
| 147 | RUN test -z "$(/usr/local/go/bin/gofmt -l pkg/xapptweaks/*.go)" |
Juha Hyttinen | ff8dccd | 2019-12-10 14:34:07 +0200 | [diff] [blame] | 148 | |
Juha Hyttinen | 01a4c49 | 2020-02-04 19:29:26 +0200 | [diff] [blame] | 149 | |
Juha Hyttinen | f44377d | 2020-02-12 10:18:40 +0200 | [diff] [blame^] | 150 | ########################################################### |
Juha Hyttinen | ff8dccd | 2019-12-10 14:34:07 +0200 | [diff] [blame] | 151 | # |
Juha Hyttinen | f44377d | 2020-02-12 10:18:40 +0200 | [diff] [blame^] | 152 | ########################################################### |
kalnagy | 303e57c | 2019-06-28 15:28:35 +0200 | [diff] [blame] | 153 | FROM ubuntu:18.04 |
| 154 | |
Balint Uveges | cd3881b | 2019-10-02 15:01:43 +0000 | [diff] [blame] | 155 | RUN apt update && apt install -y iputils-ping net-tools curl tcpdump |
| 156 | |
kalnagy | 303e57c | 2019-06-28 15:28:35 +0200 | [diff] [blame] | 157 | COPY run_submgr.sh / |
Balint Uveges | 534c882 | 2019-10-09 08:54:53 +0000 | [diff] [blame] | 158 | COPY --from=submgrbuild /opt/bin/submgr / |
kalnagy | 303e57c | 2019-06-28 15:28:35 +0200 | [diff] [blame] | 159 | COPY --from=submgrbuild /usr/local/include /usr/local/include |
| 160 | COPY --from=submgrbuild /usr/local/lib /usr/local/lib |
| 161 | RUN ldconfig |
| 162 | |
kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 163 | RUN chmod 755 /run_submgr.sh |
kalnagy | e001868 | 2019-09-26 16:28:25 +0200 | [diff] [blame] | 164 | CMD /run_submgr.sh |