Compare commits
No commits in common. "81722c7751bcc0888a247a7c205c5b7646f603a3" and "426bedffa3380da21f7783e98639055c8be95781" have entirely different histories.
81722c7751
...
426bedffa3
|
@ -22,8 +22,8 @@ build-ui:
|
||||||
- apt-get -y install libssl-dev
|
- apt-get -y install libssl-dev
|
||||||
- npm install
|
- npm install
|
||||||
- npm run build
|
- npm run build
|
||||||
rules:
|
# rules:
|
||||||
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH || $CI_COMMIT_TAG
|
# - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH || $CI_COMMIT_TAG
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- dist/
|
- dist/
|
||||||
|
@ -53,8 +53,8 @@ build-musl-bin:
|
||||||
- build-ui
|
- build-ui
|
||||||
stage: build
|
stage: build
|
||||||
image: 'rust:latest'
|
image: 'rust:latest'
|
||||||
rules:
|
# rules:
|
||||||
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH || $CI_COMMIT_TAG
|
# - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH || $CI_COMMIT_TAG
|
||||||
script:
|
script:
|
||||||
- rustup target add x86_64-unknown-linux-musl
|
- rustup target add x86_64-unknown-linux-musl
|
||||||
- apt update && apt install -y musl-tools musl-dev
|
- apt update && apt install -y musl-tools musl-dev
|
||||||
|
@ -121,12 +121,11 @@ deploy-prod-docker:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
image: docker:latest
|
image: docker:latest
|
||||||
script:
|
script:
|
||||||
- docker info
|
- docker login -u $DOCKERHUB_USER -p $DOCKERHUB_PASS docker.io
|
||||||
- docker login -u $DOCKERHUB_USER -p $DOCKERHUB_PASS
|
|
||||||
- docker build -t fivesigma/vade .
|
- docker build -t fivesigma/vade .
|
||||||
- docker push fivesigma/vade
|
- docker push fivesigma/vade
|
||||||
rules:
|
# rules:
|
||||||
- if: $CI_COMMIT_TAG
|
# - if: $CI_COMMIT_TAG
|
||||||
|
|
||||||
deploy-binaries:
|
deploy-binaries:
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
Loading…
Reference in New Issue