Compare commits
No commits in common. "46bb826a5d1eefd9b8c62ec1f38451ec9c345578" and "c1f3defed9b0706a81b535608d7c00654c8c0bfc" have entirely different histories.
46bb826a5d
...
c1f3defed9
@ -9,7 +9,7 @@ fi
|
|||||||
# Make sure we have cURL (and file for debugging)
|
# Make sure we have cURL (and file for debugging)
|
||||||
dpkg --add-architecture i386
|
dpkg --add-architecture i386
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y curl file libstdc++-13-dev:i386
|
apt-get install -y curl file
|
||||||
|
|
||||||
# Construct the download URL
|
# Construct the download URL
|
||||||
DOWNLOAD_URL="https://github.com/Laupetin/OpenAssetTools/releases/download/v${OAT_VERSION}/oat-linux.tar.gz"
|
DOWNLOAD_URL="https://github.com/Laupetin/OpenAssetTools/releases/download/v${OAT_VERSION}/oat-linux.tar.gz"
|
||||||
@ -29,12 +29,14 @@ curl -L -o "${TEMP_DIR}/oat-linux.tar.gz" "$DOWNLOAD_URL"
|
|||||||
tar -xzf "${TEMP_DIR}/oat-linux.tar.gz" -C "${TEMP_DIR}"
|
tar -xzf "${TEMP_DIR}/oat-linux.tar.gz" -C "${TEMP_DIR}"
|
||||||
|
|
||||||
# Copy the executables to /usr/local/bin and make them executable
|
# Copy the executables to /usr/local/bin and make them executable
|
||||||
cp "${TEMP_DIR}/Linker" "${TEMP_DIR}/Unlinker" /usr/local/bin/
|
cp "${TEMP_DIR}/Linker" "${TEMP_DIR}/Unlinker" .
|
||||||
chmod +x /usr/local/bin/Linker /usr/local/bin/Unlinker
|
chmod +x Linker Unlinker
|
||||||
|
|
||||||
# Clean up temporary directory
|
# Clean up temporary directory
|
||||||
rm -rf "$TEMP_DIR"
|
rm -rf "$TEMP_DIR"
|
||||||
|
|
||||||
echo "OpenAssetTools version $OAT_VERSION has been installed."
|
echo "OpenAssetTools version $OAT_VERSION has been installed."
|
||||||
|
|
||||||
Linker -v --load "deps/iw5-zones/zone/english/code_post_gfx_mp.ff" --menu-permissive --menu-no-optimization code_post_gfx_mp
|
file Linker
|
||||||
|
file Unlinker
|
||||||
|
./Linker --help
|
||||||
|
@ -3,7 +3,7 @@ name: link
|
|||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
OAT_VERSION: "0.10.0"
|
OAT_VERSION: "0.8.3"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
link-linux:
|
link-linux:
|
||||||
@ -28,10 +28,3 @@ jobs:
|
|||||||
cd ${{ github.workspace }}
|
cd ${{ github.workspace }}
|
||||||
export OAT_VERSION=${{ env.OAT_VERSION }}
|
export OAT_VERSION=${{ env.OAT_VERSION }}
|
||||||
./.gitea/scripts/ci.sh
|
./.gitea/scripts/ci.sh
|
||||||
|
|
||||||
- name: Upload assets
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: assets
|
|
||||||
path: |
|
|
||||||
zone_out/code_post_gfx_mp/code_post_gfx_mp.ff
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user