mirror of
https://github.com/Ralim/IronOS-Meta.git
synced 2025-04-15 11:27:48 +00:00
Expanding supported devices (#35)
This commit is contained in:
committed by
Ben V. Brown
parent
c10a130329
commit
3b02e3ea6f
18
.github/workflows/push.yml
vendored
18
.github/workflows/push.yml
vendored
@@ -10,17 +10,19 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
include:
|
||||
- args: "-m"
|
||||
model: "miniware"
|
||||
- args: "-p"
|
||||
model: "pinecil"
|
||||
- model: "miniware"
|
||||
- model: "pinecilv1"
|
||||
- model: "pinecilv2"
|
||||
- model: "mhp30"
|
||||
- model: "ts101"
|
||||
- model: "s60"
|
||||
fail-fast: true
|
||||
|
||||
steps:
|
||||
- name: Install dependencies (apk)
|
||||
run: apk add --no-cache git python3 py3-pip zlib py3-pillow
|
||||
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
@@ -28,13 +30,13 @@ jobs:
|
||||
run: mkdir -p /tmp/${{ matrix.model }}
|
||||
|
||||
- name: build all files for the device
|
||||
run: cd Bootup\ Logos && ./run.sh /tmp/${{ matrix.model }}/ ${{matrix.args}}
|
||||
run: cd Bootup\ Logos && ./run.sh /tmp/${{ matrix.model }}/ -m ${{matrix.model}}
|
||||
|
||||
- name: build logo erase file
|
||||
run: cd Bootup\ Logos && python3 img2logo.py -E erase_stored_image /tmp/${{ matrix.model }}/ ${{matrix.args}}
|
||||
run: cd Bootup\ Logos && python3 img2logo.py -E erase_stored_image /tmp/${{ matrix.model }}/ -m ${{matrix.model}}
|
||||
|
||||
- name: Archive artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ matrix.model }}
|
||||
path: |
|
||||
|
||||
108
.github/workflows/release.yml
vendored
108
.github/workflows/release.yml
vendored
@@ -1,41 +1,69 @@
|
||||
---
|
||||
name: "release"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "main"
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: "Release"
|
||||
runs-on: "ubuntu-22.04"
|
||||
|
||||
steps:
|
||||
- name: Install dependencies (apk)
|
||||
run: sudo apt update && sudo apt-get install -y git python3 python3-pillow
|
||||
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: prep
|
||||
run: mkdir -p /tmp/pinecil && mkdir -p /tmp/miniware
|
||||
|
||||
- name: build all files for the device
|
||||
run: cd Bootup\ Logos && ./run.sh /tmp/pinecil/ -p && ./run.sh /tmp/miniware/ -m
|
||||
|
||||
- name: build logo erase file
|
||||
run: cd Bootup\ Logos && python3 img2logo.py -E erase_stored_image /tmp/pinecil/ -p && python3 img2logo.py -E erase_stored_image /tmp/miniware/ -m
|
||||
|
||||
- name: compress logo files
|
||||
run: zip -rj pinecil.zip /tmp/pinecil/* && zip -rj miniware.zip /tmp/miniware/*
|
||||
|
||||
- uses: "marvinpinto/action-automatic-releases@latest"
|
||||
with:
|
||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
automatic_release_tag: "latest"
|
||||
prerelease: false
|
||||
title: "Release"
|
||||
files: |
|
||||
*.zip
|
||||
name: "release"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "main"
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: "Release"
|
||||
runs-on: "ubuntu-22.04"
|
||||
|
||||
steps:
|
||||
- name: Install dependencies (apk)
|
||||
run: sudo apt update && sudo apt-get install -y git python3 python3-pillow
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: prep
|
||||
run: |
|
||||
mkdir -p /tmp/pinecilv1 && \
|
||||
mkdir -p /tmp/pinecilv2 && \
|
||||
mkdir -p /tmp/miniware && \
|
||||
mkdir -p /tmp/ts101 && \
|
||||
mkdir -p /tmp/mhp30 && \
|
||||
mkdir -p /tmp/s60
|
||||
|
||||
- name: build all files for the device
|
||||
run: |
|
||||
cd Bootup\ Logos && \
|
||||
./run.sh /tmp/pinecilv1/ -m pinecilv1 && \
|
||||
./run.sh /tmp/pinecilv2/ -m pinecilv2 && \
|
||||
./run.sh /tmp/miniware/ -m miniware && \
|
||||
./run.sh /tmp/ts101/ -m ts101 && \
|
||||
./run.sh /tmp/mhp30/ -m mhp30 && \
|
||||
./run.sh /tmp/s60/ -m s60
|
||||
|
||||
- name: build logo erase file
|
||||
run: |
|
||||
cd Bootup\ Logos && \
|
||||
python3 img2logo.py -E erase_stored_image /tmp/pinecilv1/ -m pinecilv1 && \
|
||||
python3 img2logo.py -E erase_stored_image /tmp/pinecilv2/ -m pinecilv2 && \
|
||||
python3 img2logo.py -E erase_stored_image /tmp/miniware/ -m miniware && \
|
||||
python3 img2logo.py -E erase_stored_image /tmp/ts101/ -m ts101 && \
|
||||
python3 img2logo.py -E erase_stored_image /tmp/mhp30/ -m mhp30 && \
|
||||
python3 img2logo.py -E erase_stored_image /tmp/s60/ -m s60
|
||||
|
||||
|
||||
- name: compress logo files
|
||||
run: |
|
||||
zip -rj pinecilv1.zip /tmp/pinecilv1/* && \
|
||||
zip -rj miniware.zip /tmp/miniware/* && \
|
||||
zip -rj pinecilv2.zip /tmp/pinecilv2/* && \
|
||||
zip -rj ts101.zip /tmp/ts101/* && \
|
||||
zip -rj mhp30.zip /tmp/mhp30/* && \
|
||||
zip -rj s60.zip /tmp/s60/*
|
||||
|
||||
- uses: "marvinpinto/action-automatic-releases@latest"
|
||||
with:
|
||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
automatic_release_tag: "latest"
|
||||
prerelease: false
|
||||
title: "Release"
|
||||
files: |
|
||||
*.zip
|
||||
|
||||
Reference in New Issue
Block a user