mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-12-17 22:02:19 -05:00
ci(linux): fix mkdir not working with cached entries (#4711)
This commit is contained in:
parent
4bf608a051
commit
6485f72283
5
.github/workflows/generate-builds.yml
vendored
5
.github/workflows/generate-builds.yml
vendored
@ -33,6 +33,7 @@ jobs:
|
|||||||
path: |
|
path: |
|
||||||
build-cmake
|
build-cmake
|
||||||
SDL2-2.30.3
|
SDL2-2.30.3
|
||||||
|
tinyxml2-10.0.0
|
||||||
- name: Install latest SDL
|
- name: Install latest SDL
|
||||||
run: |
|
run: |
|
||||||
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
|
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
|
||||||
@ -54,7 +55,7 @@ jobs:
|
|||||||
tar -xzf 10.0.0.tar.gz
|
tar -xzf 10.0.0.tar.gz
|
||||||
fi
|
fi
|
||||||
cd tinyxml2-10.0.0
|
cd tinyxml2-10.0.0
|
||||||
mkdir build
|
mkdir -p build
|
||||||
cd build
|
cd build
|
||||||
cmake ..
|
cmake ..
|
||||||
make
|
make
|
||||||
@ -194,7 +195,7 @@ jobs:
|
|||||||
tar -xzf 10.0.0.tar.gz
|
tar -xzf 10.0.0.tar.gz
|
||||||
fi
|
fi
|
||||||
cd tinyxml2-10.0.0
|
cd tinyxml2-10.0.0
|
||||||
mkdir build
|
mkdir -p build
|
||||||
cd build
|
cd build
|
||||||
cmake ..
|
cmake ..
|
||||||
make
|
make
|
||||||
|
Loading…
Reference in New Issue
Block a user