Skip to content

Fix widget

Fix widget #5

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
target:
- "x64-7.0"
- "aarch64-7.0"
include:
- target: x64-7.0
dsm_ver: 7.0
- target: aarch64-7.0
dsm_ver: 7.0
steps:
- uses: actions/checkout@v4
- name: Checkout SynoCommunity Source and Docker Image
run: |
git clone https://github.com/SynoCommunity/spksrc.git /home/runner/work/spksrc
docker pull ghcr.io/synocommunity/spksrc
- name: Install UPX
uses: crazy-max/ghaction-upx@v3
with:
install-only: true
- name: Build Package
run: |
workdir=$(pwd)
docker run -v /home/runner/work/spksrc:/spksrc \
-v $workdir:/spksrc/spk/rr-manager \
-v $workdir/packages:/spksrc/packages \
-w /spksrc/spk/rr-manager \
ghcr.io/synocommunity/spksrc \
make arch-${{ matrix.target }}
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: packages/*.spk
- name: Save Primes
id: cache-primes-save
uses: actions/cache/save@v4
with:
path: |
/home/runner/work/spksrc/distrib
key: ${{ steps.cache-primes-restore.outputs.cache-primary-key }}