test: refs #6695 jenkins try
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2025-02-06 13:11:48 +01:00
parent 7e72ce2c94
commit 5ec44279d4
3 changed files with 8 additions and 8 deletions

View File

@ -1,10 +1,10 @@
FROM node:lts-bookworm FROM node:lts-bookworm
ENV SHELL bash # ENV SHELL bash
ENV PNPM_HOME="/pnpm" # ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH" # ENV PATH="$PNPM_HOME:$PATH"
RUN npm install -g pnpm@8.15.1 && \ # RUN npm install -g pnpm@8.15.1 && \
pnpm setup && \ # pnpm setup && \
pnpm install -g @quasar/cli@2.2.1 # pnpm install -g @quasar/cli@2.2.1
# RUN apt-get -y --fix-missing update && \ # RUN apt-get -y --fix-missing update && \
# apt-get -y --fix-missing upgrade && \ # apt-get -y --fix-missing upgrade && \

2
Jenkinsfile vendored
View File

@ -129,7 +129,7 @@ pipeline {
stage('Frontend') { stage('Frontend') {
steps { steps {
sh 'docker-compose -f docker-compose.e2e.yml build front' sh 'docker-compose -f docker-compose.e2e.yml build front'
sh 'docker-compose -f docker-compose.e2e.yml up -d front' // sh 'docker-compose -f docker-compose.e2e.yml up -d front'
} }
} }
// stage('Build Cypress') { // stage('Build Cypress') {

View File

@ -1,7 +1,7 @@
version: '3.7' version: '3.7'
services: services:
front: front:
command: pnpx quasar dev # command: pnpx quasar dev
# command: npx quasar serve --history --proxy ./proxy.mjs --hostname 127.0.0.1 --port 9000 # command: npx quasar serve --history --proxy ./proxy.mjs --hostname 127.0.0.1 --port 9000
build: build:
context: . context: .