Skip to content
Snippets Groups Projects
Commit 918f5bc0 authored by Skander Hatira's avatar Skander Hatira
Browse files

fix gitlab-ci

parent 11453512
No related branches found
No related tags found
No related merge requests found
stages:
- modules
- build
variables:
PORT: 5000
SECRET: "secret"
DATABASE: "mongodb://%2Ftmp%2Fbisspropmongodb.sock"
build:
image: node:latest
stage: build
......@@ -20,3 +25,22 @@ build:
- $CI_PROJECT_DIR/out/make/rpm/x64/*.rpm
only:
- master
build:
image: node:latest
stage: build-win
script:
- node --version
- apt-get update -y
- apt-get install -y cmake fakeroot dpkg wine mono
- cd $CI_PROJECT_DIR/src/backend
- yarn install
- cd $CI_PROJECT_DIR/
- yarn install
- yarn make
artifacts:
expire_in: 1 week
paths:
- $CI_PROJECT_DIR/out/make/deb/x64/*.deb
- $CI_PROJECT_DIR/out/make/rpm/x64/*.rpm
only:
- master
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