Can public IP changes during build

Is it possible that the public IP changes during the build? We’ve had some issues and that could explain it all.

Thank you!

Hi @rybus, the public IP for each individual job should remain the same while the container is running. We experienced build reporting issues around this time https://status.circleci.com/incidents/tnvyj3gn88wv and I’d like to confirm whether this was related to your issue. Could you open a ticket to Support so we can confirm whether you were affected by this? You can also re-run your builds with the following snippet to check for the IP address and confirm on your end:

- run:
          name: Get the public ip address
          command: |
            LATEST_IP=$(wget -qO- http://checkip.amazonaws.com)
            IP="${IP-$LATEST_IP}"
            echo $IP