Skip to content
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

ci: use test docker 1.0.1 #120

Merged
merged 1 commit into from
Mar 19, 2025
Merged
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
ci: use test docker 1.0.1
1.0.0 points to old github org.
Fix it with 1.0.1.

Signed-off-by: Giacomo Dematteis <giacomo.dematteis@nordicsemi.no>
DematteisGiacomo committed Mar 19, 2025
commit 677bc6a603d8456acb045bea6700400097e4153c
2 changes: 1 addition & 1 deletion .github/workflows/target-test.yml
Original file line number Diff line number Diff line change
@@ -58,7 +58,7 @@ jobs:
packages: read

container:
image: ghcr.io/nordicsemiconductor/asset-tracker-template:test-docker-v1.0.0
image: ghcr.io/nrfconnect/asset-tracker-template:test-docker-v1.0.1
options: --privileged
volumes:
- /dev:/dev:rw
4 changes: 2 additions & 2 deletions tests/on_target/README.md
Original file line number Diff line number Diff line change
@@ -6,15 +6,15 @@ NOTE: The tests have been tested on Ubuntu 22.04. For details on how to install

### Setup docker
```shell
docker pull ghcr.io/nordicsemiconductor/asset-tracker-template:test-docker-v1.0.0
docker pull ghcr.io/nrfconnect/asset-tracker-template:test-docker-v1.0.1
cd <path_to_att_dir>
docker run --rm -it \
--privileged \
-v /dev:/dev:rw \
-v /run/udev:/run/udev \
-v .:/work/asset-tracker-template \
-v /opt/setup-jlink:/opt/setup-jlink \
ghcr.io/nordicsemiconductor/asset-tracker-template:test-docker-v1.0.0 \
ghcr.io/nrfconnect/asset-tracker-template:test-docker-v1.0.1 \
/bin/bash
cd asset-tracker-template/tests/on_target
```