Skip to content

Commit

Permalink
fix(gitpod): add ccache back [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
kuoruan committed May 14, 2024
1 parent 430cf21 commit 3651989
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitpod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ USER gitpod
# https://openwrt.org/docs/guide-developer/toolchain/install-buildsystem#debianubuntumint
RUN sudo apt-get -q update && \
sudo apt-get install -yq \
build-essential clang flex bison g++ gawk \
build-essential ccache clang flex bison g++ gawk \
gcc-multilib g++-multilib gettext git libncurses-dev libssl-dev \
python3-distutils rsync unzip zlib1g-dev file wget zstd && \
sudo rm -rf /var/lib/apt/lists/*
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ GO_PKG_LDFLAGS:=-s -w
GO_PKG_LDFLAGS_X:= \
github.com/v2fly/v2ray-core/v5.version=$(PKG_VERSION) \
github.com/v2fly/v2ray-core/v5.build=R$(PKG_RELEASE) \
github.com/v2fly/v2ray-core/v5.codename=OpenWrt
github.com/v2fly/v2ray-core/v5.codename="OpenWrt V2Fly"

include $(INCLUDE_DIR)/package.mk
include $(TOPDIR)/feeds/packages/lang/golang/golang-package.mk
Expand Down
2 changes: 1 addition & 1 deletion compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ test -d "$feeds_dir" || mkdir -p "$feeds_dir"

cd "$sdk_dir"

if ! ( curl -L -s -v "$sdk_url_path/sha256sums" | \
if ! ( curl -L -s "$sdk_url_path/sha256sums" | \
grep -- "$sdk_name" > sha256sums.small 2>/dev/null ) ; then
echo "Can not find ${sdk_name} file in sha256sums."
exit 1
Expand Down

0 comments on commit 3651989

Please sign in to comment.