my pipeline:
image: node:10.15.0 pipelines: default: - step: services: - mysql script: - npm install - bash /run.sh & - sleep 20 - mysql -u root p3-main< test/p3-main-test.sql - node test_pipe.js
definitions:
services:
mysql:
image: mysql:5.6
variables:
MYSQL_DATABASE: 'main
'
MYSQL_USER: 'yyyyy'
MYSQL_RANDOM_ROOT_PASSWORD: 'no'
By using services only MySQL server will be available, but to access the server you need a MySQL client, through which it can identify all your MySQL commands
It worked for me by installing it in the script section -
- apt-get update
- apt-get install -y mariadb-client
- mysql -h 127.0.0.1 -u root -proot -e "CREATE USER IF NOT EXISTS 'Fisdom_1234@localhost' IDENTIFIED BY 'Fisdom_1234';"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Learn why Compass was built to tackle dev experience at scale. See how Atlassian uses it to boost visibility, reduce cognitive load, and drive consistency—plus tips to get started and customize your IDP for stronger team engagement.
Join the webinar ✨Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.