lib: utilize ucv_array_sort_r()
and ucv_object_sort_r()
#429
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: OpenWrt CI pull request testing | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
env: | |
CI_ENABLE_UNIT_TESTING: 1 | |
CI_TARGET_BUILD_DEPENDS: libnl-tiny ubus uci | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
jobs: | |
native_testing: | |
name: Various native checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ynezz/[email protected] | |
env: | |
CI_GCC_VERSION_LIST: | |
CI_CLANG_VERSION_LIST: 11 | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: native-build-artifacts | |
if-no-files-found: ignore | |
path: | | |
build/scan | |
tests/cram/**/*.t.err |