I have different gitlab repositories for development and autotests, so I have different gitlab pipelines for developments and autotests. Now development pipeline run after merge code to master branch. This pipeline build and push docker image to storage and after run pipeline with running tests. Now I overwrite image every time. I want to make pipeline, which run before merge development code to master branch. This pipeline should build docker image and run pipeline with test by this image. But I don't know, how I can transfer to tests pipeline docker images, which built at parent pipeline?
Run autotests pipeline by docker image, which built at parent pipeline
20 views Asked by coolbober At
1
There are 1 answers
Related Questions in DOCKER
- sqlplus myusername/mypassword@ORCL not working with Oracle on Docker
- Golang == Error: OCI runtime create failed: unable to start container process: exec: "./bin": stat ./bin: no such file or directory: unknown
- Only the first SQL script gets executed inside Docker Postgres container
- Retrieve the Dockerfile configuration from the Kubernetes and also change container Java parameter?
- Polars with Rust: Out of Memory Error when Processing Large Dataset in Docker Using Streaming
- Compiling eBPF program in Docker fails due to missing '__u64' type
- AttributeError: module 'numba' has no attribute 'generated_jit'
- Phoenix in a docker dev environment - generated code can't be saved from VSCode
- Docker on Multipass VMs: Connecting worker nodes to swarm results in rcp error
- Facing error in creating image of my react+vite project . Dockerfile error
- NextJS Docker build fails: fetch failed ECONNREFUSED
- Docker container unable to make HTTPS requests to external API
- Failed to connect to your instance after deploying mern app on aws ec2 instance when i try to access frontend
- Connecting to Postgres running in a Docker container using psql
- Can't connect to local postgresql server from my docker container
Related Questions in GITLAB-CI
- Cannot connect to Postgres Database when running Quarkus Tests with Gitlab ci
- Invalid command 'bdist_msi' when trying to create MSI installer with 'cx_Freeze' in Gitlab CI/CD Pipeline
- There are no active runners online GitLab
- On Gitlab, is there a way to allow Maintaners to merge MRs even if some checks fail?
- Gitlab pipeline stuck with nx cloud issue
- Upgrade Gitlab-runner package in amazon Linux 2 and Ubuntu 22.04 through Ansible
- How to set variables across several Earthfiles with earthly for continuous integration
- How to run particular jobs in GitLab CI/CD via GitLab API?
- How to start from a clean stage after maven release job fails in GitLab pipeline?
- How to install docker-compose on CI runner environment where you're trying to build your Docker images
- avoid duplicated job in the gitlab-ci
- How to run RedPanda Kafka container in GitLab CI for tests?
- Can't figure out why the pipeline does not run
- Migrating .gitlab-ci.yml from Terraform to OpenTofu with OIDC Setup
- how to provide custom variables in gitlab api?
Related Questions in GITLAB-CI-RUNNER
- Unable to run gitlab-runner with docker
- There are no active runners online GitLab
- Error rising in gitlab configuration file
- Upgrade Gitlab-runner package in amazon Linux 2 and Ubuntu 22.04 through Ansible
- Gitlab 16.10: The scheduler failed to assign job to the runner, please try again or contact system administrator
- Gitlab-runner cann't connect to gitlab server
- AWS ASG desired capacity decrements to minimum and terminates instance before completing all gitlab jobs
- Executable generated with gitlab-ci, blocked by Windows Defender (Program:Win32/Wacapew.C!ml)
- Stuck at running commands inside WSL on a windows powershell gitlab runner
- gitlab-runner update failed with GPG error signatures were invalid
- SSH to EC2 instance through Gitlab CICD and run commands
- Correct way to deploy a laravel application on docker compose with GitLab CI/CD throught local gitlab runner?
- Manual installation of gitlab-runner on RHEL fails
- How to pass runtime ENV variables to a Docker container that's used to run a GitlabCI job?
- How to deploy a new feature to a staging branch using gitlab-ci which first resets to the master branch commit and adds new feature branch code to it
Related Questions in AUTOTEST
- How to use Nunit custom result writer in Azure DevOps
- Selenide: URL check fails despite actual result is equal to expected
- Is it possible to use Google Chrome profiles for parallel testing?
- In VS2022, Facing issue while setting Optimize tag as true in C# project
- How to use Playwright to simulate the click event on a canvas element?
- Cleaning db entities after test
- Allure reporter for Mocha doesn't report tests when root hook failed
- Run autotests pipeline by docker image, which built at parent pipeline
- Allure report was skipped because there is no results directories found
- How to pytest parametrize's parameter pass to parametrize fixture
- testcafe selector and expect timeout options are not absolutely clear
- JsonException: Unable to parse: request content-length too big or unknown
- Java, TestNG: Why variable initialized in @BeforeTest isn't accessible in second TestClass
- I met with the opinion that time.sleep in autotest is a bad practice, tell me why and what alternative methods can be used
- Program fails trying to re-get window handle when switching between browser tabs
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
In your upstream pipeline that builds the image, you can do something like this:
$CI_PIPELINE_ID(you could also use something else likeCI_COMMIT_SHAor similar) and push it to your registryIn the downstream project:
So, your upstream CI configuration, may have something like this:
Then in the downstream testing project CI configuration:
See: Downstream pipelines for more information