aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2022-07-21 20:51:02 +0200
committersfan5 <sfan5@live.de>2022-07-23 22:27:19 +0200
commit175e13257653b07df247422cebd3a6da5f29dc51 (patch)
treebc54d00708cab401c0f6123c45ab5b779487aaf0 /.github/workflows/build.yml
parent71f6a5f44e0cb0e4ef57e942987ec8e76139452c (diff)
downloadhax-minetest-server-175e13257653b07df247422cebd3a6da5f29dc51.tar.gz
hax-minetest-server-175e13257653b07df247422cebd3a6da5f29dc51.zip
Centralize IrrlichtMt version used for builds
maybe a submodule would have really been easier...
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml8
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c45743284..d578c3d9f 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -226,11 +226,9 @@ jobs:
- uses: actions/checkout@v3
- name: Checkout IrrlichtMt
- uses: actions/checkout@v3
- with:
- repository: minetest/irrlicht
- path: lib/irrlichtmt/
- ref: "1.9.0mt7"
+ run: |
+ $ref = @(Get-Content misc\irrlichtmt_tag.txt)
+ git clone https://github.com/minetest/irrlicht lib\irrlichtmt --depth 1 -b $ref[0]
- name: Restore from cache and run vcpkg
uses: lukka/run-vcpkg@v7