Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mq-rest-sync-adapter-component-tests
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
guides
mq-rest-sync-adapter-component-tests
Merge requests
!4
feat: tuned Доработан ci и скрипт запуска в В Ubuntu 22.04 (jammy)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat: tuned Доработан ci и скрипт запуска в В Ubuntu 22.04 (jammy)
feature/ci
into
main
Overview
0
Commits
1
Pipelines
0
Changes
3
Merged
Maxim Morev
requested to merge
feature/ci
into
main
1 month ago
Overview
0
Commits
1
Pipelines
0
Changes
3
Expand
feat: tuned Доработан ci и скрипт запуска в В Ubuntu 22.04 (jammy)
1
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
7ce9251f
1 commit,
1 month ago
3 files
+
32
−
4
Expand all files
Preferences
File browser
List view
Tree view
Compare changes
Inline
Side-by-side
Show whitespace changes
Show one file at a time
Search (e.g. *.vue) (Ctrl+P)
scripts/run-tests-fedora.sh
0 → 100755
+
26
−
0
Options
#!/bin/bash
# Start the test environment in ubuntu 22.04 (jammy)
echo
"Starting test environment..."
docker compose
--file
docker-compose.yml up
-d
# Wait for services to be fully available
echo
"Waiting for services to start..."
sleep
10
# Run the Cucumber tests
echo
"Running tests..."
./gradlew cucumber
# Capture the test result
TEST_RESULT
=
$?
echo
"Test result:
$TEST_RESULT
"
# Stop and remove containers
echo
"Cleaning up..."
docker compose
--file
docker-compose.yml down
# Return the test result
exit
$TEST_RESULT
\ No newline at end of file