Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Some artifacts not copied over to following step

Sebastian Wolters
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 13, 2020

Hi community,

I have build a deployment pipeline consisting of 2 steps. The first step builds the project and the second deploys it to SAP Cloud Platform.
My problem is, in the second step the zip file from the first step is not existent.

image: ppiper/mta-archive-builder:latest

pipelines:
  default:
    - step:
        name: "MTA build"
        caches:
          - node
          - maven
        script:
          - mtaBuild --mtar dist/build-$BITBUCKET_BUILD_NUMBER.zip --build-target CF build
          - mv bitbucket-pipelines.yml dist/
        artifacts:
          - dist/**
    - step:
        name: "Deploy to Staging"
        image: ppiper/cf-cli
        deployment: staging
        script:
          - cf login -a "$CF_ENDPOINT" -u "$CF_USER" -p "$CF_PASSWORD" -o "$CF_ORG" -s "$CF_SPACE"
          - ls dist/
          - cf deploy "dist/build-$BITBUCKET_BUILD_NUMBER.zip"

Output from step 1:

You already have a 'node' cache so we won't create it again
You already have a 'maven' cache so we won't create it again
Searching for files matching artifact pattern dist/**
Artifact pattern dist/** matched 2 files with a total size of 93.7 MiB
Compressed files matching artifact pattern dist/** to 93.7 MiB in 3 seconds
Uploading artifact of 93.7 MiB
Successfully uploaded artifact in 6 seconds
Searching for test report files in directories named [test-results, failsafe-reports, test-reports, surefire-reports] down to a depth of 4

Finished scanning for test reports. Found 0 test report files.
Merged test suites, total number tests is 0, with 0 failures and 0 errors.

According to the logs 2 files were uploaded, which is the correct number. I also downloaded the artifact and validated that build-$BITBUCKET_BUILD_NUMBER.zip and bitbucket-pipelines.yml (just to see if anything is copied over) are exported.

Build setup step 2:

Artifact "dist/**": Downloading
Artifact "dist/**": Downloaded 93.7 MiB in 2 seconds
Artifact "dist/**": Extracting
Artifact "dist/**": Extracted in 0 seconds

So downloaded size and uploaded size from build setup matches. But ls lists only one file. 

+ ls dist/
bitbucket-pipelines.yml

 What happened with my second file? In the logs there are no error messages from bitbucket. Only my deploy step fails as there is no zip file.

Any ideas what I can do to debug the issue?

Kind regards

1 answer

0 votes
ktomk
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 13, 2020

To debug assets, once they have been created, you can find them in the webinterface for download (at the top, like tabs, first tab is the build log, next tab should be assets).

Sometimes downloading and inspecting them gives some pointers.

In your quest, I guess the file-size of the asset shows that it should contain the .zip file as well. So this comes a bit unexpected I must admit, as you say it's not extracted (the ls output shows actually).

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events