Skip to content
This repository has been archived by the owner on Dec 19, 2022. It is now read-only.

build: take new csdk release #59

Merged
merged 1 commit into from
Jan 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Changes for release v1.3.1
- Device service updated to use C SDK (v1.3.1)

Changes for Hanoi release (v1.3.0)
- Device service updated to use C SDK (v1.3.0)

Changes for release v1.2.2
- Update to use cbor fixed version(0.7.0)
- Generate VERSION file based on the git tag used
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ docker: ./VERSION $(DOCKERS)

docker_device_grove_c:
docker build \
-f scripts/Dockerfile.alpine-3.11 \
-f scripts/Dockerfile.alpine \
--label "git_sha=$(GIT_SHA)" \
-t edgexfoundry/docker-device-grove-c:${GIT_SHA} \
-t edgexfoundry/docker-device-grove-c:${VERSION}-dev \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The repository can be found on git at [libmraa](https://github.com/intel-iot-dev
```
sh> cd device-grove-c
sh> make version
sh> docker build . -t device-grove-c -f ./scripts/Dockerfile.alpine-3.11
sh> docker build . -t device-grove-c -f ./scripts/Dockerfile.alpine
```
This command shall build the dependencies - libmraa and device-c-sdk library and create the release version of the docker image by the name 'device-grove-c'. This name can be replaced with your preferred name, if necessary.
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e -x

BUILD_CSDK=$1

CSDK_VER=1.3.0
CSDK_VER=1.3.1

# Dependencies
if [ ! -d deps ]
Expand Down