From 24a74a8381aba786c28ed6356970e354743c5136 Mon Sep 17 00:00:00 2001 From: Guobang Bi <373318510@qq.com> Date: Wed, 19 Feb 2020 13:43:32 +0800 Subject: [PATCH 1/2] add wayland for snap --- snap/snapcraft.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 11ba4f0b..9f4f657e 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -29,6 +29,7 @@ apps: plugs: - home - x11 + - wayland - opengl - network - network-bind From 04e6aba071b272896b1ce559d19f494957d85eff Mon Sep 17 00:00:00 2001 From: Guobang Bi <373318510@qq.com> Date: Sat, 22 Feb 2020 18:55:24 +0800 Subject: [PATCH 2/2] using python 3.7 for github actions --- .github/workflows/build-qv2ray.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build-qv2ray.yml b/.github/workflows/build-qv2ray.yml index 0869f26d..e0658ad3 100644 --- a/.github/workflows/build-qv2ray.yml +++ b/.github/workflows/build-qv2ray.yml @@ -28,6 +28,11 @@ jobs: run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3) - name: Checking out sources uses: actions/checkout@master + - name: Install Python 3.7 version + uses: actions/setup-python@v1 + with: + python-version: '3.7' + architecture: ${{ matrix.arch }} - name: Restoring submodules run: git submodule update --init # --------------------------------------------------------