Skip to content

Commit 8dcaeb3

Browse files
committed
test ci without extra_depends
1 parent f2c93e0 commit 8dcaeb3

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/multi-arch-test-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ on:
66
jobs:
77
build:
88
name: Feeds Package Test Build
9-
uses: openwrt/actions-shared-workflows/.github/workflows/multi-arch-test-build.yml@main
9+
uses: jefferyto/openwrt-actions-shared-workflows/.github/workflows/multi-arch-test-build.yml@local-apk-feed-test

libs/sqlite3/Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
include $(TOPDIR)/rules.mk
99

1010
PKG_NAME:=sqlite
11-
PKG_VERSION:=3.49.1
12-
PKG_SRC_VERSION:=3490100
13-
PKG_RELEASE:=2
11+
PKG_VERSION:=3.50.2
12+
PKG_SRC_VERSION:=3500200
13+
PKG_RELEASE:=1
1414

1515
PKG_SOURCE:=$(PKG_NAME)-autoconf-$(PKG_SRC_VERSION).tar.gz
1616
PKG_SOURCE_URL:=https://www.sqlite.org/2025/
17-
PKG_HASH:=106642d8ccb36c5f7323b64e4152e9b719f7c0215acf5bfeac3d5e7f97b59254
17+
PKG_HASH:=84a616ffd31738e4590b65babb3a9e1ef9370f3638e36db220ee0e73f8ad2156
1818

1919
PKG_CPE_ID:=cpe:/a:sqlite:sqlite
2020
PKG_LICENSE:=PUBLICDOMAIN
@@ -75,10 +75,10 @@ define Package/sqlite3-cli
7575
SECTION:=utils
7676
CATEGORY:=Utilities
7777
DEPENDS := \
78-
+libsqlite3 \
79-
+SQLITE3_LIBEDIT:libedit \
80-
+SQLITE3_READLINE:libreadline \
81-
+SQLITE3_READLINE:libncursesw
78+
+libsqlite3 \
79+
+SQLITE3_LIBEDIT:libedit \
80+
+SQLITE3_READLINE:libreadline \
81+
+SQLITE3_READLINE:libncursesw
8282
TITLE+= (cli)
8383
endef
8484

libs/sqlite3/test.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
22

33
if [ "$1" = 'sqlite3-cli' ]; then
4-
sqlite3 -version 2>&1 | cut -d' ' -f1 | grep -x "$PKG_VERSION"
4+
sqlite3 -version | grep -F "$PKG_VERSION"
55
fi

0 commit comments

Comments
 (0)