Skip to content

Commit

Permalink
build: require node 18 to install bbb packages
Browse files Browse the repository at this point in the history
  • Loading branch information
antobinary committed Sep 1, 2023
1 parent aa7c649 commit 89d17ff
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion build/packages-template/bbb-etherpad/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,6 @@ fpm -s dir -C ./staging -n $PACKAGE \
--after-remove after-remove.sh \
--description "The EtherPad Lite components for BigBlueButton" \
$DIRECTORIES \
$OPTS
$OPTS \
-d 'nodejs (>= 18)' -d 'yq (<< 20)'

3 changes: 2 additions & 1 deletion build/packages-template/bbb-export-annotations/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,6 @@ fpm -s dir -C ./staging -n $PACKAGE \
--before-remove before-remove.sh \
--description "BigBlueButton Export Annotations" \
$DIRECTORIES \
$OPTS
$OPTS \
-d 'nodejs (>= 18)' -d 'yq (<< 20)'

3 changes: 2 additions & 1 deletion build/packages-template/bbb-pads/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@ fpm -s dir -C ./staging -n $PACKAGE \
--before-remove before-remove.sh \
--description "BigBlueButton Pads" \
$DIRECTORIES \
$OPTS
$OPTS \
-d 'nodejs (>= 18)' -d 'yq (<< 20)'

3 changes: 2 additions & 1 deletion build/packages-template/bbb-webhooks/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,5 @@ fpm -s dir -C ./staging -n $PACKAGE \
--description "BigBlueButton Webhooks" \
$DIRECTORIES \
$OPTS \
-d 'yq (>= 3)' -d 'yq (<< 4)'
-d 'yq (>= 3)' -d 'yq (<< 4)' \
-d 'nodejs (>= 18)' -d 'yq (<< 20)'
3 changes: 2 additions & 1 deletion build/packages-template/bbb-webrtc-sfu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,5 @@ fpm -s dir -C ./staging -n $PACKAGE \
--description "BigBlueButton WebRTC SFU" \
$DIRECTORIES \
$OPTS \
-d 'yq (>= 3)' -d 'yq (<< 4)'
-d 'yq (>= 3)' -d 'yq (<< 4)' \
-d 'nodejs (>= 18)' -d 'yq (<< 20)'

0 comments on commit 89d17ff

Please sign in to comment.