You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
I'd like to access the website builded from my first step to my second step
For exemple, this works:
image: marvincourcier/ubuntu-ci:ubuntu-ci
pipelines:
default:
- step:
name: Build Project
size: 2x
services:
- docker
caches:
- docker
script:
- composer install
- docker-compose up --build -d
- ./vendor/bin/phpstan analyse src/*
- ./vendor/bin/phpcs
- ./bin/phpunit
artifacts:
- vendor/**
- docker/**
definitions:
services:
docker:
memory: 7168
When i test the url from my homepage it works.
And i'd like to split my build and testing as follow:
pipelines:
default:
- step:
name: Build Project
size: 2x
services:
- docker
caches:
- docker
script:
- composer install
- docker-compose up --build -d
artifacts:
- vendor/**
- docker/**
- step:
name: Unit Testing
script:
- ./vendor/bin/phpstan analyse src/*
- ./vendor/bin/phpcs
- ./bin/phpunit
definitions:
services:
docker:
memory: 7168
But when i test the url from my homepage it fails
So i know the issue is i can't access the docker-compose up build from the first step
So if you have any idea that does not imply to re use the docker-compose up --build -d in the second step, that would be very nice.