Switched to GitHub Container Registry for NickelTC image

This commit is contained in:
Patrick Gaskin 2020-11-15 14:14:23 -05:00
parent a25a821e75
commit 666aed3c02
No known key found for this signature in database
GPG key ID: A2FD79F68A2AB707
4 changed files with 6 additions and 6 deletions

View file

@ -7,12 +7,12 @@ trigger:
steps:
- name: submodules
image: docker.io/geek1011/nickeltc:1.0
image: ghcr.io/pgaskin/nickeltc:1.0
when:
event: [push, pull_request, tag]
command: ["git", "submodule", "update", "--init", "--recursive"]
- name: build
image: docker.io/geek1011/nickeltc:1.0
image: ghcr.io/pgaskin/nickeltc:1.0
when:
event: [push, pull_request, tag]
commands:
@ -21,7 +21,7 @@ steps:
- mkdir out && mv KoboRoot.tgz src/libnm.so out/
depends_on: [submodules]
- name: build-NM_UNINSTALL_CONFIGDIR
image: docker.io/geek1011/nickeltc:1.0
image: ghcr.io/pgaskin/nickeltc:1.0
when:
event: [push, pull_request, tag]
commands:

View file

@ -5,7 +5,7 @@ jobs:
build:
name: NickelMenu
runs-on: ubuntu-latest
container: docker.io/geek1011/nickeltc:1.0
container: ghcr.io/pgaskin/nickeltc:1.0
steps:
- name: Checkout
uses: actions/checkout@v1

View file

@ -5,7 +5,7 @@ jobs:
build:
name: NickelMenu
runs-on: ubuntu-latest
container: docker.io/geek1011/nickeltc:1.0
container: ghcr.io/pgaskin/nickeltc:1.0
steps:
- name: Checkout
uses: actions/checkout@v1

View file

@ -17,6 +17,6 @@ Most errors, if any, will be displayed as a menu item in the main menu. If no ne
## Compiling
NickelTC is designed to be compiled with [NickelTC](https://github.com/pgaskin/NickelTC). To compile it with Docker/Podman, use `docker run --volume="$PWD:$PWD" --user="$(id --user):$(id --group)" --workdir="$PWD" --env=HOME --entrypoint=make --rm -it docker.io/geek1011/nickeltc:1.0 all koboroot`. To compile it on the host, use `make CROSS_COMPILE=/path/to/nickeltc/bin/arm-nickel-linux-gnueabihf-`.
NickelMenu is designed to be compiled with [NickelTC](https://github.com/pgaskin/NickelTC). To compile it with Docker/Podman, use `docker run --volume="$PWD:$PWD" --user="$(id --user):$(id --group)" --workdir="$PWD" --env=HOME --entrypoint=make --rm -it ghcr.io/pgaskin/nickeltc:1.0 all koboroot`. To compile it on the host, use `make CROSS_COMPILE=/path/to/nickeltc/bin/arm-nickel-linux-gnueabihf-`.
<!-- TODO: a lot more stuff -->