iStoreNAS/.github/workflows/ci.yml

52 lines
1.5 KiB
YAML
Raw Normal View History

2023-11-08 17:12:15 +08:00
name: iStore Intl Builder
on:
workflow_dispatch:
env:
IB_NAME: openwrt-imagebuilder-22.03.5-x86-64.Linux-x86_64
MF_NAME: openwrt-22.03.5-x86-64.manifest
IB_URL: https://downloads.openwrt.org/releases/22.03.5/targets/x86/64/
TZ: Asia/Shanghai
jobs:
build:
runs-on: ubuntu-latest
name: iStore Intl Builder
steps:
- name: Checkout
uses: actions/checkout@main
with:
fetch-depth: 1
- name: Initialization environment
env:
DEBIAN_FRONTEND: noninteractive
run: |
sudo -E apt-get -qq update
sudo -E apt-get -qq install binutils bzip2 xz-utils unzip git wget patch device-tree-compiler
sudo -E apt-get -qq clean
sudo timedatectl set-timezone "$TZ"
- name: Download IB
run: |
2023-11-08 17:14:36 +08:00
mkdir dl
2023-11-08 17:12:15 +08:00
wget -O dl/${IB_NAME}.tar.xz ${IB_URL}${IB_NAME}.tar.xz
wget -O dl/${MF_NAME} ${IB_URL}${MF_NAME}
wget -O dl/sha256sums ${IB_URL}sha256sums
2023-11-08 17:17:43 +08:00
cd dl && sha256sum -c --ignore-missing --status sha256sums
2023-11-08 17:12:15 +08:00
- name: Unpack IB
run: |
mkdir ib
tar -C ib --strip-components=1 -xJf ../dl/${IB_NAME}.tar.xz
cp -a src/* ib/
ls patches/ | sort | xargs -n1 sh -c 'patch -p1 -d ib -i ../patches/$0'
sed -i 's/ unofficial/ oversea/' ib/Makefile
- name: Build
run: |
cp dl/${MF_NAME} ib/target.manifest
cd ib && make -f multi.mk image_multi