Skip to content

Commit

Permalink
fs_mark tests
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdebek committed Aug 29, 2023
1 parent e0db3d6 commit a3274ed
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 24 deletions.
6 changes: 3 additions & 3 deletions .github/actions/phoenix-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ inputs:
required: false
nightly:
description: 'Build additional tests'
default: false
default: true
required: false

# action runner
Expand All @@ -40,9 +40,9 @@ runs:
TARGET: ${{ inputs.target }}
SYSPAGE: ${{ inputs.syspage }}
CI_CUSTOM_BUILDROOT: ${{ inputs.buildroot }}
LONG_TEST: ${{ inputs.nightly == 'true' && 'y' || 'n' }}
LONG_TEST: 'n'
args:
- ${{ inputs.params }} # note: params will be split by build.sh internally
- ${{ inputs.params }} ports # note: params will be split by build.sh internally

# branding
branding:
Expand Down
19 changes: 10 additions & 9 deletions _targets/build.project.armv7a7-imx6ull
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,17 @@ export PSH_DEFUSRPWDHASH="0B1ANiYi45IhxkfmUW155/GBd4IRE="
#
# Ports configuration
#
export PORTS_BUSYBOX=y
export PORTS_PCRE=y
export PORTS_OPENSSL=y
export PORTS_LIGHTTPD=y
export PORTS_DROPBEAR=y
export PORTS_BUSYBOX=n
export PORTS_PCRE=n
export PORTS_OPENSSL=n
export PORTS_LIGHTTPD=n
export PORTS_DROPBEAR=n
export PORTS_LUA=n
export PORTS_LZO=y
export PORTS_OPENVPN=y
export PORTS_JANSSON=y
export PORTS_CURL=y
export PORTS_LZO=n
export PORTS_OPENVPN=n
export PORTS_JANSSON=n
export PORTS_CURL=n
export PORTS_FS_MARK=y

#
# Platform dependent parameters
Expand Down
3 changes: 2 additions & 1 deletion _targets/build.project.armv7a9-zynq7000
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ CROSS=arm-phoenix-

export PSH_DEFUSRPWDHASH="0B1ANiYi45IhxkfmUW155/GBd4IRE="

export PORTS_BUSYBOX=y
export PORTS_BUSYBOX=n
export PORTS_FS_MARK=y

#
# Default platform dependent parameters
Expand Down
21 changes: 11 additions & 10 deletions _targets/build.project.ia32-generic
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,18 @@ export PSH_DEFUSRPWDHASH="0B1ANiYi45IhxkfmUW155/GBd4IRE="
#
# Ports configuration
#
export PORTS_BUSYBOX=y
export PORTS_PCRE=y
export PORTS_OPENSSL=y
export PORTS_LIGHTTPD=y
export PORTS_DROPBEAR=y
export PORTS_BUSYBOX=n
export PORTS_PCRE=n
export PORTS_OPENSSL=n
export PORTS_LIGHTTPD=n
export PORTS_DROPBEAR=n
export PORTS_LUA=n
export PORTS_LZO=y
export PORTS_OPENVPN=y
export PORTS_JANSSON=y
export PORTS_CURL=y
export PORTS_MICROPYTHON=y
export PORTS_LZO=n
export PORTS_OPENVPN=n
export PORTS_JANSSON=n
export PORTS_CURL=n
export PORTS_MICROPYTHON=n
export PORTS_FS_MARK=y

#
# Platform dependent parameters
Expand Down
2 changes: 1 addition & 1 deletion phoenix-rtos-tests

0 comments on commit a3274ed

Please sign in to comment.