Skip to content

Commit

Permalink
update docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
greenaddress committed Jan 2, 2021
1 parent d22e470 commit b542e3b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: greenaddress/ci@sha256:f70141a178a96d030ff793259fd7dd11a86adc8cd1f090c79e99df0fa955fbdf
image: greenaddress/ci@sha256:d7b34c3e9ffaadfadebdd76eec5a53a4ae9db807254783fa169004fe109f65b6

stages:
- build
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ matrix:
include:
- services:
- docker
script: docker run -v $PWD:/ga greenaddress/ci@sha256:f70141a178a96d030ff793259fd7dd11a86adc8cd1f090c79e99df0fa955fbdf /bin/sh -c "cd /ga && ./tools/buildgreen.sh linux"
script: docker run -v $PWD:/ga greenaddress/ci@sha256:d7b34c3e9ffaadfadebdd76eec5a53a4ae9db807254783fa169004fe109f65b6 /bin/sh -c "cd /ga && ./tools/buildgreen.sh linux"
- services:
- docker
script: docker run -v $PWD:/ga greenaddress/ci@sha256:f70141a178a96d030ff793259fd7dd11a86adc8cd1f090c79e99df0fa955fbdf /bin/sh -c "cd /ga && ./tools/buildgreen.sh windows"
script: docker run -v $PWD:/ga greenaddress/ci@sha256:d7b34c3e9ffaadfadebdd76eec5a53a4ae9db807254783fa169004fe109f65b6 /bin/sh -c "cd /ga && ./tools/buildgreen.sh windows"
6 changes: 3 additions & 3 deletions BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cd green_qt
Note: change 'linux' to 'windows' to build a full symbols build for Windows

```
docker run -v $PWD:/ga greenaddress/ci@sha256:f70141a178a96d030ff793259fd7dd11a86adc8cd1f090c79e99df0fa955fbdf /bin/sh -c "cd /ga && ./tools/buildgreen.sh linux allsymbolsunstripped && cp /docker_bld_root/build-linux-gcc/Green /ga/Green"
docker run -v $PWD:/ga greenaddress/ci@sha256:d7b34c3e9ffaadfadebdd76eec5a53a4ae9db807254783fa169004fe109f65b6 /bin/sh -c "cd /ga && ./tools/buildgreen.sh linux allsymbolsunstripped && cp /docker_bld_root/build-linux-gcc/Green /ga/Green"
```

## Build static release on macOS
Expand All @@ -30,13 +30,13 @@ docker run -v $PWD:/ga greenaddress/ci@sha256:f70141a178a96d030ff793259fd7dd11a8
## Build static release on Linux

```
docker run -v $PWD:/ga greenaddress/ci@sha256:f70141a178a96d030ff793259fd7dd11a86adc8cd1f090c79e99df0fa955fbdf /bin/sh -c "cd /ga && ./tools/buildgreen.sh linux && cp /docker_bld_root/build-linux-gcc/Green /ga/Green"
docker run -v $PWD:/ga greenaddress/ci@sha256:d7b34c3e9ffaadfadebdd76eec5a53a4ae9db807254783fa169004fe109f65b6 /bin/sh -c "cd /ga && ./tools/buildgreen.sh linux && cp /docker_bld_root/build-linux-gcc/Green /ga/Green"
```

## Build static release on Linux for Windows

```
docker run -v $PWD:/ga greenaddress/ci@sha256:f70141a178a96d030ff793259fd7dd11a86adc8cd1f090c79e99df0fa955fbdf /bin/sh -c "cd /ga && ./tools/buildgreen.sh Windows && cp build-mingw-w64/release/Green.exe /ga/Green.exe"
docker run -v $PWD:/ga greenaddress/ci@sha256:d7b34c3e9ffaadfadebdd76eec5a53a4ae9db807254783fa169004fe109f65b6 /bin/sh -c "cd /ga && ./tools/buildgreen.sh Windows && cp build-mingw-w64/release/Green.exe /ga/Green.exe"
```

## Development in QtCreator
Expand Down

0 comments on commit b542e3b

Please sign in to comment.