Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

libphoenix NOPIC: perf tests #956

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/actions/phoenix-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ inputs:
description: 'Build additional tests'
default: false
required: false
libphoenix_nopic:
description: 'LIBPHOENIX_NOPIC'
default: 'n'
required: false

# action runner
runs:
Expand All @@ -41,6 +45,7 @@ runs:
SYSPAGE: ${{ inputs.syspage }}
CI_CUSTOM_BUILDROOT: ${{ inputs.buildroot }}
LONG_TEST: ${{ inputs.nightly == 'true' && 'y' || 'n' }}
LIBPHOENIX_NOPIC: ${{ inputs.libphoenix_nopic }}
args:
- ${{ inputs.params }} # note: params will be split by build.sh internally

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ on:
type: boolean
default: false
required: false
libphoenix_nopic:
type: string
default: 'n'
required: false


# jobs
Expand Down Expand Up @@ -55,6 +59,7 @@ jobs:
syspage: ${{ matrix.syspage }}
params: ${{ inputs.build_params }} ${{ matrix.additional_params }}
nightly: ${{ inputs.nightly }}
libphoenix_nopic: ${{ inputs.libphoenix_nopic }}

# step 3: tar rootfs
- name: Tar rootfs
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ on:
- 'feature/*'

jobs:
call-ci:
uses: phoenix-rtos/phoenix-rtos-project/.github/workflows/ci-project.yml@master
nopic-3:
uses: ./.github/workflows/ci-project.yml
with:
nightly: true
build_params: all tests
libphoenix_nopic: y
secrets: inherit
100 changes: 0 additions & 100 deletions .github/workflows/lint.yml

This file was deleted.

2 changes: 1 addition & 1 deletion libphoenix
Loading