Skip to content

mac: use grid view instead of stack view #2403

mac: use grid view instead of stack view

mac: use grid view instead of stack view #2403

name: Build Artifacts (OpenWrt Binary)
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
tags:
description: 'Test scenario tags'
required: false
type: boolean
pull_request:
branches: [master, develop]
paths-ignore:
- '**/*.md'
- '.circleci/**'
- '.cirrus.yml'
push:
branches: [master, develop]
paths-ignore:
- '**/*.md'
- '.circleci/**'
- '.cirrus.yml'
release:
types: [published]
schedule:
- cron: '0 16 * * *'
concurrency:
group: ${{ github.workflow }} / ${{ startsWith(github.event_name, 'pull') && github.ref_name || github.sha }}
cancel-in-progress: ${{ startsWith(github.event_name, 'pull') }}
env:
CACHE_EPOCH: 128-2
GOPROXY: direct
jobs:
openwrt-binary-release:
strategy:
fail-fast: false
matrix:
include:
- arch_name: x86_64
arch: x86_64
extra_flags: ''
openwrt: 'target=x86 subtarget=64 abi=musl'
qemu_suffix: i386
- arch_name: x86
arch: i486
extra_flags: ''
openwrt: 'target=x86 subtarget=generic abi=musl'
qemu_suffix: amd64
- arch_name: aarch64_cortex-a53
arch: aarch64
extra_flags: '--arm-cpu=cortex-a53'
openwrt: 'target=sunxi subtarget=cortexa53 abi=musl'
qemu_suffix: aarch64
- arch_name: aarch64_cortex-a72
arch: aarch64
extra_flags: '--arm-cpu=cortex-a72'
openwrt: 'target=mvebu subtarget=cortexa72 abi=musl'
qemu_suffix: aarch64
- arch_name: aarch64_generic
arch: aarch64
extra_flags: ''
openwrt: 'target=rockchip subtarget=armv8 abi=musl'
qemu_suffix: aarch64
runs-on: ubuntu-20.04
env:
OPENWRT_FLAGS: arch=${{ matrix.arch_name }} release=23.05.3 gcc_ver=12.3.0 ${{ matrix.openwrt }}
SDK_ROOT: ${{ github.workspace }}/openwrt-sdk-${{ matrix.arch_name }}
SDK_HOME: ${{ github.workspace }}/openwrt-sdk-${{ matrix.arch_name }}-home
steps:
- uses: actions/checkout@v4
- name: Checkout with shallow submodules
run: |
# unshallow must come first otherwise submodule may be get unshallowed
git fetch --tags --unshallow
git submodule update --init --depth 1
- name: Patch libcxxabi for both of armel and armhf
if: ${{ matrix.arch_name == 'armel' || matrix.arch_name == 'arm' }}
run: |
cd third_party/libc++abi
patch -p1 < v8-6.7.17-fix-gcc-unwind-header.patch
- name: Cache clang
id: clang-cache
uses: actions/cache@v4
with:
path: |
third_party/llvm-build/Release+Asserts
key: ${{ runner.os }}-toolchain-${{ hashFiles('CLANG_REVISION') }}-v${{ env.CACHE_EPOCH }}
- name: Cache golang
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-docker-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-docker-
- name: Cache qemu-user-static
id: qemu-user-cache
uses: actions/cache@v4
with:
path: |
qemu-user-static*.deb
key: ${{ runner.os }}-qemu-8.2.5-ds-1
- name: Cache openwrt sdk home
id: openwrt-sdkhome-cache
uses: actions/cache@v4
with:
path: |
openwrt-sdk-*.Linux-x86_64
${{ env.SDK_ROOT }}
${{ env.SDK_HOME }}
key: openwrt-sdkhome-${{ matrix.arch_name }}-23-05-03
- name: Build build tool
run: |
cd tools
go build
- name: "Install dependency: prebuilt clang and clang-tidy binaries"
if: ${{ steps.clang-cache.outputs.cache-hit != 'true' }}
run: |
./scripts/download-clang-prebuilt-binaries.py
rm -f third_party/llvm-build/Release+Asserts/*.tgz
- name: "Install dependency: qemu user cache"
if: ${{ steps.qemu-user-cache.outputs.cache-hit != 'true' }}
run: |
wget http://ftp.us.debian.org/debian/pool/main/q/qemu/qemu-user-static_8.2.5+ds-1_amd64.deb
- name: Change ubuntu mirror
run: |
sudo sed -i 's/azure.archive.ubuntu.com/azure.archive.ubuntu.com/g' /etc/apt/sources.list
sudo apt-get update -qq
- name: "Install dependency: openwrt sdkhome"
if: ${{ steps.openwrt-sdkhome-cache.outputs.cache-hit != 'true' }}
run: |
eval "$OPENWRT_FLAGS"
if [ "$subtarget" ]; then
SDK_PATH=openwrt-sdk-$release-$target-${subtarget}_gcc-${gcc_ver}_${abi}.Linux-x86_64
else
subtarget='generic'
SDK_PATH=openwrt-sdk-$release-${target}_gcc-${gcc_ver}_${abi}.Linux-x86_64
fi
SDK_URL=https://downloads.openwrt.org/releases/$release/targets/$target/$subtarget/$SDK_PATH.tar.xz
curl -L -O $SDK_URL
# full_root=$SDK_PATH/staging_dir/toolchain-*_gcc-${gcc_ver}_${abi}
full_root=$(tar -tf $SDK_PATH.tar.xz "$SDK_PATH/staging_dir/" |grep -E "/toolchain-.*_gcc-${gcc_ver}_${abi}/$")
#tar -C $SDK_ROOT -xf $SDK_PATH.tar.xz --strip-components 3 $full_root
tar -xf $SDK_PATH.tar.xz
# fix dl directory
rm -rf $SDK_PATH/dl
ln -sf /tmp $SDK_PATH/dl
# fix package directory
ln -sf $PWD/openwrt $SDK_PATH/package/yass-cli
ln -sf $SDK_PATH ${{ env.SDK_HOME }}
ln -sf $full_root ${{ env.SDK_ROOT }}
rm -rf ${{ env.SDK_ROOT }}/bin ${{ env.SDK_ROOT }}/libexec
- name: Populate depedencies
run: |
sudo apt-get update -qq
sudo apt-get install -y cmake ninja-build pkg-config bubblewrap
# libc6-i386 interferes with x86 build
sudo apt remove libc6-i386
sudo apt install qemu-user
sudo apt remove -y qemu-user-binfmt
sudo dpkg -i qemu-user-static_*.deb
- name: Populate dependencie (cmake, overwrite)
run: |
curl -L -O https://github.com/Kitware/CMake/releases/download/v3.28.5/cmake-3.28.5-linux-x86_64.tar.gz
sudo tar -C /usr/local --strip-components=1 -xf cmake-3.28.5-linux-x86_64.tar.gz
cmake --version
rm -f *.tar.gz
- name: Build TGZ packages
run: |
./tools/build --variant cli --arch ${{ matrix.arch }} --system linux --subsystem openwrt --sysroot ${{ env.SDK_ROOT }} \
--cmake-build-type MinSizeRel -build-benchmark -build-test -nc ${{ matrix.extra_flags }}
./tools/build --variant server --arch ${{ matrix.arch }} --system linux --subsystem openwrt --sysroot ${{ env.SDK_ROOT }} \
--cmake-build-type MinSizeRel -build-benchmark -build-test -nc ${{ matrix.extra_flags }}
- name: Run tests (x86 and x86_64)
if: ${{ matrix.arch_name == 'x86' || matrix.arch_name == 'x86_64' }}
run: |
mkdir -p ${{ env.SDK_ROOT }}/etc/ssl/certs ${{ env.SDK_ROOT }}/dev ${{ env.SDK_ROOT }}/proc ${{ env.SDK_ROOT }}/tmp
touch ${{ env.SDK_ROOT }}/etc/resolv.conf
bwrap --die-with-parent --ro-bind ${{ env.SDK_ROOT }} / \
--ro-bind /etc/resolv.conf /etc/resolv.conf \
--ro-bind /etc/ssl/certs /etc/ssl/certs \
--proc /proc --dev /dev \
--unshare-all --share-net \
--bind $PWD/build-linux-openwrt-${{ matrix.arch }} /tmp \
/tmp/yass_test
- name: Run tests (non x86, under qemu emulation)
if: ${{ matrix.arch_name != 'x86' && matrix.arch_name != 'x86_64' }}
run: |
qemu-${{ matrix.qemu_suffix }}-static -L $SDK_ROOT \
$PWD/build-linux-openwrt-${{ matrix.arch }}/yass_test \
--no_exec_proc_tests
- name: Upload dist tarball (including debuginfo)
if: ${{ github.event_name == 'release' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload ${{ github.event.release.tag_name }} yass*.tgz
- name: Build IPK packages
run: |
pushd ${{ env.SDK_HOME }}
make defconfig
make package/yass-cli/{clean,compile} V=s
popd
find ${{ env.SDK_HOME }}/ -type f -name "yass*.ipk" -exec cp -v {} . \;
# clean up after build
pushd ${{ env.SDK_HOME }}
make package/yass-cli/clean V=s
popd
- name: Checksum IPK packages
run: |
echo "md5sum "
echo "======================================================================"
md5sum *.ipk
echo "sha1sum "
echo "======================================================================"
sha1sum *.ipk
echo "sha256sum "
echo "======================================================================"
sha256sum *.ipk
echo "sha512sum "
echo "======================================================================"
sha512sum *.ipk
- name: Upload dist tarball (including debuginfo)
if: ${{ github.event_name == 'release' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload ${{ github.event.release.tag_name }} yass*.ipk