1
0

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
4 changed files with 6 additions and 6 deletions

View File

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

View File

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

View File

@@ -5,7 +5,7 @@ jobs:
build: build:
name: NickelMenu name: NickelMenu
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: docker.io/geek1011/nickeltc:1.0 container: ghcr.io/pgaskin/nickeltc:1.0
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v1 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 ## 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 --> <!-- TODO: a lot more stuff -->