Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ce-deploy-ui
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ccce
dev
ce-deploy-ui
Commits
e542dece
Commit
e542dece
authored
1 year ago
by
Anders Lindh Olsson
Browse files
Options
Downloads
Patches
Plain Diff
Refactor pipeline and run component tests on ff
parent
7b87b317
No related branches found
No related tags found
3 merge requests
!446
Merge main into develop
,
!445
Draft: Main into develop
,
!436
Cypress/CI improvements
Pipeline
#172980
waiting for manual action
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+23
-19
23 additions, 19 deletions
.gitlab-ci.yml
with
23 additions
and
19 deletions
.gitlab-ci.yml
+
23
−
19
View file @
e542dece
...
...
@@ -5,6 +5,7 @@ default:
-
docker
stages
:
-
setup
-
check
-
build
-
test
...
...
@@ -16,29 +17,22 @@ include:
variables
:
CONTAINER_IMAGE
:
"
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME"
CYPRESS_CACHE_FOLDER
:
"
cache/Cypress"
CYPRESS_CACHE_FOLDER
:
"
$CI_PROJECT_DIR/
cache/Cypress"
install-dependencies
:
stage
:
check
stage
:
setup
script
:
-
npm ci
artifacts
:
paths
:
-
.cache/*
-
cache/Cypress
-
node_modules
-
${CYPRESS_CACHE_FOLDER}
# for some inexplicable reason this path MUST be in a variable
run-pre-commit
:
needs
:
-
job
:
install-dependencies
artifacts
:
true
lint
:
stage
:
check
script
:
-
npm run code-quality
needs
:
-
job
:
install-dependencies
artifacts
:
true
artifacts
:
reports
:
codequality
:
gl-codequality.json
...
...
@@ -46,14 +40,14 @@ lint:
build-container
:
stage
:
build
image
:
docker:latest
needs
:
-
job
:
install-dependencies
artifacts
:
true
before_script
:
-
docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
script
:
-
docker build -t $CONTAINER_IMAGE --build-arg REACT_APP_MUI_PRO_LICENSE_KEY=${REACT_APP_MUI_PRO_LICENSE_KEY} .
-
docker push $CONTAINER_IMAGE
needs
:
-
job
:
install-dependencies
artifacts
:
true
build-storybook
:
stage
:
build
...
...
@@ -66,20 +60,30 @@ build-storybook:
paths
:
-
storybook-static
test-components
-chrome
:
.
test-components
:
stage
:
test
image
:
cypress/browsers:node16.14.0-slim-chrome99-ff97
script
:
-
CHOKIDAR_USEPOLLING=true WATCHPACK_POLLING=true npx cypress run --component --browser chrome
needs
:
-
job
:
install-dependencies
artifacts
:
true
-
npm ci
-
npm start &
-
CHOKIDAR_USEPOLLING=true WATCHPACK_POLLING=true npx cypress run --component --browser ${BROWSER}
needs
:
[]
# no requirements since it does an install
artifacts
:
when
:
on_failure
paths
:
-
cypress/videos
-
cypress/screenshots
test-components-chrome
:
extends
:
.test-components
variables
:
BROWSER
:
chrome
test-components-firefox
:
extends
:
.test-components
variables
:
BROWSER
:
firefox
.deploy
:
stage
:
deploy
image
:
registry.esss.lu.se/ics-docker/awxkit
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment