Skip to content

Commit

Permalink
Merge pull request #102 from skycoin/fix/build-deploy-all-images
Browse files Browse the repository at this point in the history
Fix/build deploy all images
  • Loading branch information
jdknives authored Apr 16, 2021
2 parents 6b27eaa + debd878 commit d194d96
Showing 3 changed files with 11 additions and 5 deletions.
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -13,15 +13,21 @@ install:
script:
- make test # Can be 'make check' once that is working.
- make integration
- make build-skybian-img
- make build-skybian-img
- make build-skybian-img BOARD=opi3 ARCH=arm64
- make build-skybian-img BOARD=rpi ARCH=armhf
- make build-skybian-img BOARD=rpi64 ARCH=arm64
- make build-skyimager-gui
before_deploy:
- bash build.sh -p
deploy:
provider: releases
file_glob: true
file:
- output/final/*.tar.gz
- output/prime/final/*.tar.gz
- output/opi3/final/*.tar.gz
- output/rpi/final/*.tar.gz
- output/rpi64/final/*.tar.gz
- fyne-cross/bin/*.tar.gz
draft: true
prerelease: true
2 changes: 1 addition & 1 deletion build.conf
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
#
# version must always start with "v" like: v0.1.45-rc

VERSION=v0.2.1
VERSION=v0.3.0
# This must match the tags in the github repository

# loading the actual path
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
@@ -651,8 +651,8 @@ main_build()
create_folders || return 1

# erase final images if there
warn "Cleaning final images directory"
rm -f "$FINAL_IMG_DIR"/* &> /dev/null || true
# warn "Cleaning final images directory"
# rm -f "$FINAL_IMG_DIR"/* &> /dev/null || true

# download resources
get_all || return 1

0 comments on commit d194d96

Please sign in to comment.