新增一个通用字典模块,支持任意数据类型的键值对存取,为嵌入式系统专门优化 (#1981) #1135
This file contains hidden or 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: Packages Test | |
| # Controls when the action will run. Triggers the workflow on push or pull request | |
| # events but only for the master branch | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| # Runs at 00:00 UTC on the 1, 16 and 31th of every month、 | |
| schedule: | |
| - cron: '0 0 */15 * *' | |
| # Grant GITHUB_TOKEN the permissions required to make a Pages deployment | |
| permissions: | |
| pages: write # to deploy to Pages | |
| id-token: write # to verify the deployment originates from an appropriate source | |
| concurrency: | |
| group: pkgs-test | |
| cancel-in-progress: false # wait for finish. | |
| jobs: | |
| change_pull_request: | |
| if: ${{ github.event_name == 'pull_request' }} | |
| uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main | |
| with: | |
| package-append-res: true | |
| deploy-pages: false | |
| change_push: | |
| if: ${{ github.event_name == 'push' }} | |
| uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main | |
| with: | |
| package-append-res: true | |
| deploy-pages: true | |
| master-stm32h750-artpi-test: | |
| if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}} | |
| uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main | |
| with: | |
| bsps: stm32/stm32h750-artpi:sourcery-arm | |
| rt-thread-versions: branch:master | |
| package-append-res: true | |
| package-test-all: true | |
| deploy-pages: true | |
| check-errors: false | |
| master-k210-test: | |
| if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}} | |
| needs: master-stm32h750-artpi-test | |
| uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main | |
| with: | |
| bsps: k210:sourcery-riscv-none-embed | |
| rt-thread-versions: branch:master | |
| package-append-res: true | |
| package-test-all: true | |
| deploy-pages: true | |
| check-errors: false | |
| master-qemu-vexpress-a9-test: | |
| if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}} | |
| needs: master-k210-test | |
| uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main | |
| with: | |
| bsps: qemu-vexpress-a9:sourcery-arm | |
| rt-thread-versions: branch:master | |
| package-append-res: true | |
| package-test-all: true | |
| deploy-pages: true | |
| check-errors: false | |
| v4_1_1-stm32h750-artpi-test: | |
| needs: master-qemu-vexpress-a9-test | |
| if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}} | |
| uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main | |
| with: | |
| bsps: stm32/stm32h750-artpi:sourcery-arm | |
| rt-thread-versions: tag:v4.1.1 | |
| package-append-res: true | |
| package-test-all: true | |
| deploy-pages: true | |
| check-errors: false | |
| v4_1_1-k210-test: | |
| if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}} | |
| needs: v4_1_1-stm32h750-artpi-test | |
| uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main | |
| with: | |
| bsps: k210:sourcery-riscv-none-embed | |
| rt-thread-versions: tag:v4.1.1 | |
| package-append-res: true | |
| package-test-all: true | |
| deploy-pages: true | |
| check-errors: false | |
| v4_1_1-qemu-vexpress-a9-test: | |
| if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}} | |
| needs: v4_1_1-k210-test | |
| uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main | |
| with: | |
| bsps: qemu-vexpress-a9:sourcery-arm | |
| rt-thread-versions: tag:v4.1.1 | |
| package-append-res: true | |
| package-test-all: true | |
| deploy-pages: true | |
| check-errors: false |