Skip to content
This repository was archived by the owner on Sep 11, 2022. It is now read-only.

Commit 3bae8f6

Browse files
committed
⬆️ Update Qt to v6.3.0 and gRPC to v1.45.2
1 parent 3f1fff1 commit 3bae8f6

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: "/"
5+
schedule:
6+
interval: daily

.github/workflows/nightly.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,20 @@ on:
1818
jobs:
1919
publish_nightly:
2020
name: Publish nightly
21-
strategy:
22-
fail-fast: false
2321
runs-on: ubuntu-latest
2422
container:
2523
image: archlinux/archlinux:base-devel
2624

2725
steps:
28-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
27+
2928
- name: Run build script
3029
run: bash ./build-static.sh
30+
3131
- name: Get current date
3232
id: date
3333
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
34+
3435
- name: Package
3536
env:
3637
ZSTD_CLEVEL: 19
@@ -40,6 +41,7 @@ jobs:
4041
tar -acf ../qv2ray-static-build-deps-nightly-${{ steps.date.outputs.date }}-archlinux-x86_64.tar.zst .
4142
cd ../QvMeta-build/installed
4243
tar -acf ../../qv2ray-static-bin-nightly-${{ steps.date.outputs.date }}-archlinux-x86_64.tar.zst .
44+
4345
- name: Upload nightly release assets
4446
uses: svenstaro/upload-release-action@v2
4547
with:

build-static.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ pacman -Syu --needed --noconfirm git cmake ninja \
1010
libxcomposite \
1111
abseil-cpp c-ares re2
1212

13-
curl -LO https://github.com/Shadowsocks-NET/qt-static-build/releases/download/v6.2.3/qt-somewhere-static-v6.2.3-archlinux-x86_64.tar.zst
13+
curl -LO https://github.com/Shadowsocks-NET/qt-static-build/releases/download/v6.3.0/qt-somewhere-static-v6.3.0-archlinux-x86_64.tar.zst
1414
mkdir static-installed
15-
tar -C static-installed -xf qt-somewhere-static-v6.2.3-archlinux-x86_64.tar.zst
15+
tar -C static-installed -xf qt-somewhere-static-v6.3.0-archlinux-x86_64.tar.zst
1616

17-
git clone https://github.com/grpc/grpc.git --branch v1.44.0 --recursive --verbose --depth 1
17+
git clone https://github.com/grpc/grpc.git --branch v1.45.2 --recursive --verbose --depth 1
1818
mkdir grpc-build && cd grpc-build
1919
cmake ../grpc \
2020
-DBUILD_SHARED_LIBS=OFF \

0 commit comments

Comments
 (0)