Newbie: Q: cloud.drone.io: Where is the output?

Dear Forum Wizards,

I’m trying for the very first time to run a simple pipeline on cloud.drone.io (wrong forum)?

It sort of works, I get a green checkmark and I can make it fail by adding a no-sense command. But: where is the output? For example: If I add a command like ls , it completes successfully, but I have no idea where to inspect stdout/stderr.

“Mystified”, on a really low level.

EDIT: Here is my .drone.yml which completes successfully, but without any output from the test step. It must be something really, really stupid I guess…

kind: pipeline
type: docker
name: default

steps:
  - name: test 
    image: fedora:33
    commands:
      - pwd
      - ls
      - env

The build log is here
–alec

If I add a command like ls , it completes successfully, but I have no idea where to inspect stdout/stderr.

I followed the link you provided and I can see the stdout / stderr logs on the screen. Here is a screenshot of what I see:

Thanks for taking time to reply! That said, I get nuts… is this this the url I used, or some link therein I don’t see? This is what I see:

Any idea what’s going on?

Typing fast is not a winning strategy, sorry.

I’m probably just too dumb to understand where to click. My original (hidden) link to the log was Drone | Continuous Integration and that shows “my” screenshot. The link to your screenshot is Drone | Continuous Integration. So, my really stupid question is where you clicked to follow “your” link?

sorry, I am really confused here … the output of each step is clearly visible in the screenshot you posted. In the below example I can see the stdout / stderr of the clone step.

If you want to see the stdout / stderr for the mingw step, you can click the mingw in the list, and it will display the logs for the mingw step.

I told you I’m dumb. Really sorry for taking your time with this. Case closed.

And, again: Thanks!