diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-09-26 13:16:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-26 13:16:24 +0200 |
commit | e96e49e63b233a2fac0144f252ad68b7476adb2d (patch) | |
tree | 14ff5df179b41bb0a6dd217b34b7d8f52518a241 | |
parent | 6e013e415d11b252fe0d3aa8c9a84173fc2ea8f5 (diff) | |
parent | d9477fd0aaf169a228082314b825361093239ebf (diff) | |
download | redot-cpp-e96e49e63b233a2fac0144f252ad68b7476adb2d.tar.gz |
Merge pull request #618 from akien-mga/ci-tests-godot-3.3.3
-rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6b9696..00068f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,8 +21,8 @@ jobs: sudo apt-get update -qq sudo apt-get install -qqq build-essential pkg-config python -m pip install scons - curl -LO https://downloads.tuxfamily.org/godotengine/3.2.3/Godot_v3.2.3-stable_linux_server.64.zip - unzip Godot_v3.2.3-stable_linux_server.64.zip + curl -LO https://downloads.tuxfamily.org/godotengine/3.3.3/Godot_v3.3.3-stable_linux_server.64.zip + unzip Godot_v3.3.3-stable_linux_server.64.zip - name: Build godot-cpp run: | @@ -41,7 +41,7 @@ jobs: - name: Run test GDNative library run: | - ./Godot_v3.2.3-stable_linux_server.64 --path test -s script.gd + ./Godot_v3.3.3-stable_linux_server.64 --path test -s script.gd windows-msvc: name: Build (Windows, MSVC) @@ -123,8 +123,8 @@ jobs: - name: Install dependencies run: | python -m pip install scons - curl -LO https://downloads.tuxfamily.org/godotengine/3.2.3/Godot_v3.2.3-stable_osx.64.zip - unzip Godot_v3.2.3-stable_osx.64.zip + curl -LO https://downloads.tuxfamily.org/godotengine/3.3.3/Godot_v3.3.3-stable_osx.universal.zip + unzip Godot_v3.3.3-stable_osx.universal.zip - name: Build godot-cpp run: | |