-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7dcd614
commit 24a67d7
Showing
4 changed files
with
41 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Release Build | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-binary: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: build binary | ||
run: | | ||
docker build . -t builder | ||
docker run --rm -v ${PWD}:/project builder make dist DEBUG=0 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: Bloopair_release | ||
path: dist/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
FROM devkitpro/devkitppc:latest | ||
FROM devkitpro/devkitppc:20240609 | ||
|
||
# Build latest wut | ||
RUN \ | ||
mkdir wut && \ | ||
cd wut && \ | ||
git init . && \ | ||
git remote add origin https://github.com/devkitPro/wut.git && \ | ||
git fetch --depth 1 origin f17054e3e86222c14a1094639558d34b690636ed && \ | ||
git checkout FETCH_HEAD | ||
WORKDIR /wut | ||
RUN make -j$(nproc) | ||
RUN make install | ||
|
||
WORKDIR /project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters