v2.2.5 #18
Workflow file for this run
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: Test Build | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
release: | |
types: | |
- published | |
jobs: | |
build: | |
name: Test ${{ matrix.arch }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- arch: aarch64_cortex-a53 | |
target: mvebu-cortexa53 | |
runtime_test: true | |
- arch: aarch64_cortex-a72 | |
target: mvebu-cortexa72 | |
runtime_test: false | |
- arch: aarch64_generic | |
target: armsr-armv8 | |
runtime_test: false | |
- arch: arm_cortex-a7_neon-vfpv4 | |
target: ipq40xx-generic | |
runtime_test: false | |
- arch: arm_cortex-a9_vfpv3-d16 | |
target: mvebu-cortexa9 | |
runtime_test: false | |
- arch: arm_cortex-a15_neon-vfpv4 | |
target: armsr-armv7 | |
runtime_test: true | |
- arch: i386_pentium4 | |
target: x86-generic | |
runtime_test: false | |
- arch: i386_pentium-mmx | |
target: x86-geode | |
runtime_test: true | |
- arch: mips_24kc | |
target: ath79-generic | |
runtime_test: false | |
- arch: mipsel_24kc | |
target: mt7621 | |
runtime_test: false | |
- arch: riscv64_riscv64 | |
target: sifiveu-generic | |
runtime_test: false | |
- arch: x86_64 | |
target: x86-64 | |
runtime_test: true | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Build | |
uses: openwrt/gh-action-sdk@v7 | |
env: | |
ARCH: ${{ matrix.arch }} | |
FEEDNAME: packages_ci | |
PACKAGES: cdnspeedtest | |
V: s | |
- name: Move created packages to project dir | |
run: cp bin/packages/${{ matrix.arch }}/packages_ci/*.ipk . || true | |
- name: Store packages | |
uses: actions/upload-artifact@v3 | |
if: github.event_name != 'release' | |
with: | |
name: ${{ matrix.arch}}-${{ github.sha}}-packages | |
path: "*.ipk" | |
- name: Store logs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.arch}}-${{ github.sha}}-logs | |
path: logs/ | |
- name: Upload packages | |
uses: svenstaro/upload-release-action@v2 | |
if: github.event_name == 'release' | |
with: | |
repo_token: ${{ github.token }} | |
file: "*.ipk" | |
tag: ${{ github.ref }} | |
file_glob: true | |
- name: Remove logs | |
run: sudo rm -rf logs/ || true | |
- name: Register QEMU | |
if: ${{ matrix.runtime_test }} | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y qemu-user-static binfmt-support | |
sudo update-binfmts --import | |
- name: Build Docker container | |
if: ${{ matrix.runtime_test }} | |
run: | | |
docker build -t test-container --build-arg ARCH .github/workflows/ | |
env: | |
ARCH: ${{ matrix.arch }} | |
- name: Test via Docker container | |
if: ${{ matrix.runtime_test }} | |
run: | | |
docker run --rm -v $GITHUB_WORKSPACE:/ci test-container |