From 585b218fea64842d766f60c91b83249523266043 Mon Sep 17 00:00:00 2001 From: Jongwhan Lee <51560997+leejw51crypto@users.noreply.github.com> Date: Thu, 25 Apr 2024 17:14:05 +0900 Subject: [PATCH] Problem: missing support of defiwallet (fix #349) (#350) use node 20 add ue5 test use ue 5.3 use node 20 use checkout v4 use ue4 remove ue5 docker --- .github/workflows/cpp-lint.yml | 4 ++-- .github/workflows/dev.yml | 31 +++---------------------------- CHANGELOG.md | 1 + Makefile | 2 +- 4 files changed, 7 insertions(+), 31 deletions(-) diff --git a/.github/workflows/cpp-lint.yml b/.github/workflows/cpp-lint.yml index 08c93f00..7573e957 100644 --- a/.github/workflows/cpp-lint.yml +++ b/.github/workflows/cpp-lint.yml @@ -11,7 +11,7 @@ jobs: cpp-linter: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true @@ -30,7 +30,7 @@ jobs: registry: ghcr.io username: ${{ secrets.USER }} password: ${{ secrets.PAT }} - image: ghcr.io/epicgames/unreal-engine:dev-slim-5.1 + image: ghcr.io/epicgames/unreal-engine:dev-slim-4.27.2 options: -v ${{ github.workspace }}:/home/ue4/play-unreal-plugin -e HOME=/home/ue4 run: | cd ~/play-unreal-plugin diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 5442c82b..c2c0c719 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -17,7 +17,9 @@ jobs: Unreal_Build_4_27: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + with: + submodules: true - name: Setup run: | @@ -40,30 +42,3 @@ jobs: run: | cd ~/play-unreal-plugin make RunUAT - - Unreal_Build_5_1: - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v3 - - - name: Setup - run: | - sudo chmod 777 $GITHUB_WORKSPACE - sudo rm -rf /usr/share/dotnet - sudo rm -rf /opt/ghc - sudo rm -rf "/usr/local/share/boost" - sudo rm -rf "$AGENT_TOOLSDIRECTORY" - sudo rm -rf /usr/local/lib/android - TARGET=5.1 make - python change_version.py 5.1.0 - - - uses: addnab/docker-run-action@v3 - with: - registry: ghcr.io - username: ${{ secrets.USER }} - password: ${{ secrets.PAT }} - image: ghcr.io/epicgames/unreal-engine:dev-slim-5.1 - options: -v ${{ github.workspace }}:/home/ue4/play-unreal-plugin -e HOME=/home/ue4 - run: | - cd ~/play-unreal-plugin - make RunUAT diff --git a/CHANGELOG.md b/CHANGELOG.md index fe1aa54c..55a2c697 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog ## [Unreleased] +- Fix WC 2.0 for defiwallet ## [v0.0.18-alpha] - 2024-1-2 - Support metamask send-tx for wallet-connect 2.0 diff --git a/Makefile b/Makefile index ce856f35..322ed3ea 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ UNAME := $(shell uname) PWD = $(shell pwd) # Set the play cpp sdk version -PLAYCPPSDK=v0.0.24-alpha +PLAYCPPSDK=v0.0.26-alpha # Set the play-cpp-sdk cache path PLAYCPPSDK_CACHE_DIR=./install/$(PLAYCPPSDK) # Set the play-cpp-sdk target path