Skip to content
Snippets Groups Projects
Commit 2f519d28 authored by Dobromir Palushev's avatar Dobromir Palushev
Browse files

another try

parent bdf6df02
No related branches found
No related tags found
44 merge requests!71A pipeline Job rename,!69Workflow updates,!68Workflow updates,!67Workflow updates,!65updated logic of the test-job,!63updated logic of the test-job,!61updated logic of the test-job,!59updated logic of the test-job,!57updated logic of the test-job,!55added "create-release-tag" job,!54updated logic of the test-job,!53Workflow updates,!51updated logic of the test-job,!49updated logic of the test-job,!48updated logic of the test-job,!46updated logic of the test-job,!44updated logic of the test-job,!43updated logic of the test-job,!42updated logic of the test-job,!41updated logic of the test-job,!40updated logic of the test-job,!39updated logic of the test-job,!38updated logic of the test-job,!36pipeline multiple updates,!35pipeline multiple updates,!34updated logic of the test-job,!33pipeline multiple updates,!32pipeline multiple updates,!31updated logic of the test-job,!30pipeline multiple updates,!29updated logic of the test-job,!28pipeline multiple updates,!27pipeline multiple updates,!26pipeline multiple updates,!25pipeline multiple updates,!24pipeline multiple updates,!23pipeline multiple updates,!22pipeline multiple updates,!21pipeline multiple updates,!20pipeline multiple updates,!19pipeline multiple updates,!18pipeline multiple updates,!17pipeline multiple updates,!16pipeline multiple updates
...@@ -36,13 +36,13 @@ run-tests: ...@@ -36,13 +36,13 @@ run-tests:
# image: node:16.17.0-alpine # image: node:16.17.0-alpine
services: services:
- name: docker:${DOCKER_VERSION}-dind - name: docker:${DOCKER_VERSION}-dind
alias: containerHost alias: containerhost
script: script:
- docker run -p 27017:27017 -d --name mongo-container --rm mongo:${MONGO_VERSION} - docker run -p 27017:27017 -d --name mongo-container --rm mongo:${MONGO_VERSION}
- docker build - docker build
--tag "${CONTAINER_TAG}-test" --tag "${CONTAINER_TAG}-test"
--target=test --target=test
--add-host=host.docker.internal:containerHost --add-host=host.docker.internal:172.17.0.1
"./app" "./app"
# - echo ‘http://dl-cdn.alpinelinux.org/alpine/v3.6/main’ >> /etc/apk/repositories # - echo ‘http://dl-cdn.alpinelinux.org/alpine/v3.6/main’ >> /etc/apk/repositories
# - echo ‘http://dl-cdn.alpinelinux.org/alpine/v3.6/community’ >> /etc/apk/repositories # - echo ‘http://dl-cdn.alpinelinux.org/alpine/v3.6/community’ >> /etc/apk/repositories
......
...@@ -5,10 +5,6 @@ ARG NODEJS_VERSION='16.17.0' ...@@ -5,10 +5,6 @@ ARG NODEJS_VERSION='16.17.0'
FROM node:$NODEJS_VERSION-alpine AS base FROM node:$NODEJS_VERSION-alpine AS base
ARG \
MONGODB_URL_TEST=mongodb://host.docker.internal:27017/todo-app \
JWT_SECRET_TEST=<my-very-secret-jwt>
ENV \ ENV \
PORT=<dynamically-set-from-k8s> \ PORT=<dynamically-set-from-k8s> \
MONGODB_URL=<dynamically-set-from-k8s> \ MONGODB_URL=<dynamically-set-from-k8s> \
...@@ -37,8 +33,8 @@ COPY ./server/package*.json ./ ...@@ -37,8 +33,8 @@ COPY ./server/package*.json ./
RUN npm ci --no-audit --no-fund RUN npm ci --no-audit --no-fund
ARG \ ARG \
MONGODB_URL_TEST \ MONGODB_URL_TEST=mongodb://host.docker.internal:27017/todo-app \
JWT_SECRET_TEST JWT_SECRET_TEST=<my-very-secret-jwt>
# MONGODB_URL and JWT_SECRET are available as env variables # MONGODB_URL and JWT_SECRET are available as env variables
RUN MONGODB_URL=$MONGODB_URL_TEST JWT_SECRET=$JWT_SECRET_TEST npm run test RUN MONGODB_URL=$MONGODB_URL_TEST JWT_SECRET=$JWT_SECRET_TEST npm run test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment