mirror of
https://github.com/wiiu-env/libkernel.git
synced 2024-11-01 02:25:11 +01:00
Compare commits
2 Commits
1fe026f532
...
ae56ec900c
Author | SHA1 | Date | |
---|---|---|---|
|
ae56ec900c | ||
|
09bf8e3f25 |
6
.github/workflows/pr.yml
vendored
6
.github/workflows/pr.yml
vendored
@ -6,15 +6,15 @@ jobs:
|
|||||||
clang-format:
|
clang-format:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- name: clang-format
|
- name: clang-format
|
||||||
run: |
|
run: |
|
||||||
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./source ./include
|
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source ./include
|
||||||
build-lib:
|
build-lib:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
needs: clang-format
|
needs: clang-format
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- name: build lib
|
- name: build lib
|
||||||
run: |
|
run: |
|
||||||
docker build . -f Dockerfile.buildlocal -t builder
|
docker build . -f Dockerfile.buildlocal -t builder
|
||||||
|
59
.github/workflows/push_image.yml
vendored
59
.github/workflows/push_image.yml
vendored
@ -3,31 +3,42 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
|
env:
|
||||||
|
REGISTRY: ghcr.io
|
||||||
|
IMAGE_NAME: ${{ github.repository }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
clang-format:
|
build-and-push-image:
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- name: clang-format
|
|
||||||
run: |
|
|
||||||
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./source ./include
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: clang-format
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@master
|
- name: Checkout repository
|
||||||
- name: Get release version
|
uses: actions/checkout@v3
|
||||||
id: get_release_tag
|
- name: Extract Docker metadata
|
||||||
run: |
|
id: meta
|
||||||
echo RELEASE_VERSION=$(echo $(date '+%Y%m%d')) >> $GITHUB_ENV
|
uses: docker/metadata-action@v4
|
||||||
echo REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F / '{print $2}' | sed -e "s/:refs//" | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
|
|
||||||
echo REPOSITORY_OWNER=$(echo "$GITHUB_REPOSITORY" | awk -F / '{print $1}' | sed 's/[^a-zA-Z0-9]//g' | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
|
|
||||||
- name: Publish to Registry
|
|
||||||
uses: elgohr/Publish-Docker-Github-Action@master
|
|
||||||
with:
|
with:
|
||||||
name: ${{ env.REPOSITORY_OWNER }}/${{ env.REPOSITORY_NAME }}
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
tags: |
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
type=raw,value={{date 'YYYYMMDD'}}-{{sha}}
|
||||||
snapshot: true
|
type=raw,value={{date 'YYYYMMDD'}}
|
||||||
cache: true
|
type=raw,value=latest
|
||||||
tags: "latest, ${{ env.RELEASE_VERSION }}"
|
|
||||||
|
- name: Log into registry ${{ env.REGISTRY }}
|
||||||
|
uses: docker/login-action@v2.1.0
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.CI_PAT_WRITE_PACKAGE }}
|
||||||
|
|
||||||
|
- name: Build and push Docker image
|
||||||
|
uses: docker/build-push-action@v4
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
push: true
|
@ -1,4 +1,4 @@
|
|||||||
FROM wiiuenv/devkitppc:20220806
|
FROM ghcr.io/wiiu-env/devkitppc:20220806
|
||||||
|
|
||||||
WORKDIR tmp_build
|
WORKDIR tmp_build
|
||||||
COPY . .
|
COPY . .
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
FROM wiiuenv/devkitppc:20220806
|
FROM ghcr.io/wiiu-env/devkitppc:20220806
|
||||||
|
|
||||||
WORKDIR project
|
WORKDIR project
|
@ -25,12 +25,12 @@ After that you can simply include `<kernel/kernel.h>` to get access to the kerne
|
|||||||
A prebuilt version of this lib can found on dockerhub. To use it for your projects, add this to your Dockerfile.
|
A prebuilt version of this lib can found on dockerhub. To use it for your projects, add this to your Dockerfile.
|
||||||
```
|
```
|
||||||
[...]
|
[...]
|
||||||
COPY --from=wiiuenv/libkernel:[tag] /artifacts $DEVKITPRO
|
COPY --from=ghcr.io/wiiu-env/libkernel:[tag] /artifacts $DEVKITPRO
|
||||||
[...]
|
[...]
|
||||||
```
|
```
|
||||||
Replace [tag] with a tag you want to use, a list of tags can be found [here](https://hub.docker.com/r/wiiuenv/libkernel/tags).
|
Replace [tag] with a tag you want to use, a list of tags can be found [here](https://github.com/wiiu-env/libkernel/pkgs/container/libkernel/versions).
|
||||||
It's highly recommended to pin the version to the **latest date** instead of using `latest`.
|
It's highly recommended to pin the version to the **latest date** instead of using `latest`.
|
||||||
|
|
||||||
## Format the code via docker
|
## Format the code via docker
|
||||||
|
|
||||||
`docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./source ./include -i`
|
`docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source ./include -i`
|
Loading…
Reference in New Issue
Block a user