-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #75 Circle CI deploy in 0.25.1 #85
Conversation
…d defining the ENV TAG_DEPLOY to define when it is a release
…stall-deps-skyapi-Linux`
…buntu and Debian that support `add-apt-repository`
…cies of `skyapi ` in the image generated by `docker` in `Circle CI`
.circleci/config.yml
Outdated
@@ -54,25 +54,28 @@ jobs: | |||
- checkout | |||
- setup_remote_docker: | |||
version: 18.06.0-ce | |||
- run: docker build --build-arg QEMU_PLATFORM --build-arg QEMU_OS=debian --file $GOPATH/src/github.com/skycoin/libskycoin/docker/images/test-arm/Dockerfile $GOPATH/src/github.com/skycoin/libskycoin -t skydev-test | |||
- run: docker build --build-arg QEMU_PLATFORM --build-arg QEMU_OS=ubuntu --file $GOPATH/src/github.com/skycoin/libskycoin/docker/images/test-arm/Dockerfile $GOPATH/src/github.com/skycoin/libskycoin -t skydev-test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gotta use Debian , Skycoin projects rely on Debian not Ubuntu .
…he libskycoin tests will be done.
docker/images/deploy-arm/Dockerfile
Outdated
@@ -1,5 +1,5 @@ | |||
ARG QEMU_PLATFORM | |||
FROM balenalib/${QEMU_PLATFORM}-debian-golang | |||
FROM balenalib/${QEMU_PLATFORM}-ubuntu-golang |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldn't this be Debian ? Why Ubuntu ?
docker/images/deploy-arm/Dockerfile
Outdated
@@ -10,17 +10,17 @@ ADD . $GOPATH/src/github.com/skycoin/libskycoin/ | |||
RUN [ "cross-build-start" ] | |||
|
|||
RUN ls -oa $GOPATH/src/github.com/skycoin/libskycoin/ | |||
RUN sh $GOPATH/src/github.com/skycoin/libskycoin/ci-scripts/docker_install_debian.sh | |||
RUN sh $GOPATH/src/github.com/skycoin/libskycoin/ci-scripts/docker_install_ubuntu.sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Debian ?
…or the correct distro
Fixes #75