mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-25 05:31:21 +00:00
* more CI fixes * update poco * update ucentralgw Signed-off-by: John Crispin <john@phrozen.org>
43 lines
2.1 KiB
YAML
43 lines
2.1 KiB
YAML
name: Build OpenWrt/uCentral images
|
|
|
|
on:
|
|
push:
|
|
branches: [ uCentral-* ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
target: ['cig_wf188', 'cig_wf194c', 'cig_wf160d', 'edgecore_eap101', 'edgecore_eap102', 'edgecore_ecs4100-12ph', 'edgecore_ecw5211', 'linksys_e8450-ubi', 'linksys_ea8300', 'mikrotik_nand-large', 'tplink_cpe210_v3', 'tplink_ex227', 'tplink_ex447', 'zyxel_gs1900-10hp']
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build image for ${{ matrix.target }}
|
|
id: build
|
|
run: |
|
|
git config --global user.email "you@example.com"
|
|
git config --global user.name "Your Name"
|
|
make -j TARGET=${{ matrix.target }}
|
|
|
|
- name: Package and upload image for ${{ matrix.target }}
|
|
env:
|
|
GH_BUILD_USERNAME: ${{ secrets.GH_BUILD_USERNAME }}
|
|
GH_BUILD_PASSWORD: ${{ secrets.GH_BUILD_PASSWORD }}
|
|
ARTIFACTORY_USERNAME: cicd-indoor-main
|
|
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}
|
|
run: |
|
|
BRANCH=$(git rev-parse --abbrev-ref HEAD)
|
|
LOWERCASE_TARGET=`echo ${{ matrix.target }} | tr '[:upper:]' '[:lower:]'`
|
|
HASH=$(git rev-parse --short HEAD)
|
|
TAR_NAME="$(date +%Y%m%d)-$LOWERCASE_TARGET-$BRANCH-$HASH.tar.gz"
|
|
ls openwrt/bin/targets/
|
|
tar cfz "$TAR_NAME" -C openwrt/bin/targets/ .
|
|
curl -u $GH_BUILD_USERNAME:$GH_BUILD_PASSWORD -T "$TAR_NAME" "https://tip.jfrog.io/artifactory/tip-wlan-ap-firmware/uCentral/$LOWERCASE_TARGET/"$TAR_NAME""
|
|
IMG_NAME="$(date +%Y%m%d)-$LOWERCASE_TARGET-$BRANCH-$HASH-upgrade.bin";
|
|
echo -e "{\n\t\"image\":\""${IMG_NAME}"\",\n\t\"revision\": \""${HASH}"\"\n}" > latest-upgrade.json
|
|
[ -f openwrt/image-file ] && curl -u $GH_BUILD_USERNAME:$GH_BUILD_PASSWORD -T "openwrt/$(cat openwrt/image-file)" "https://tip.jfrog.io/artifactory/tip-wlan-ap-firmware/uCentral/$LOWERCASE_TARGET/"$IMG_NAME""
|
|
[ -f openwrt/image-file ] && curl -u $GH_BUILD_USERNAME:$GH_BUILD_PASSWORD -T "latest-upgrade.json" "https://tip.jfrog.io/artifactory/tip-wlan-ap-firmware/uCentral/$LOWERCASE_TARGET/latest-upgrade.json"
|