README.md: Claim support for Cudy TR3000 with OpenWRT 24.10.0-rc2 #7
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
name: ci | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
rax3000m-op23_05_4: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
sudo apt install -y u-boot-tools device-tree-compiler | |
- name: Test | |
run: | | |
wget https://downloads.openwrt.org/releases/23.05.4/targets/mediatek/filogic/openwrt-23.05.4-mediatek-filogic-cmcc_rax3000m-squashfs-sysupgrade.itb && \ | |
python3 patch_itb.py openwrt-23.05.4-mediatek-filogic-cmcc_rax3000m-squashfs-sysupgrade.itb patched.itb && \ | |
(echo "90840502210d1cd311967f9b8024b7fb patched.itb" | md5sum -c) | |
rax3000m-op24_10_0_rc2: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
sudo apt install -y u-boot-tools device-tree-compiler | |
- name: Test | |
run: | | |
wget https://downloads.openwrt.org/releases/24.10.0-rc2/targets/mediatek/filogic/openwrt-24.10.0-rc2-mediatek-filogic-cmcc_rax3000m-squashfs-sysupgrade.itb && \ | |
python3 patch_itb.py openwrt-24.10.0-rc2-mediatek-filogic-cmcc_rax3000m-squashfs-sysupgrade.itb patched.itb && \ | |
(echo "a7c48477c64724348ee0b4e2630bd031 patched.itb" | md5sum -c) |