mirror of
https://github.com/open-goal/jak-project
synced 2026-06-06 19:52:01 -04:00
release: fix windows artifacts and stop building asan when releasing on linux (#1283)
* release: fix windows artifacts and stop building asan when releasing on linux * release: use valid paths in the container's context
This commit is contained in:
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
DEST=${1}
|
||||
SOURCE=${2}
|
||||
|
||||
mkdir -p $DEST
|
||||
|
||||
cp $SOURCE/build/game/gk $DEST
|
||||
cp $SOURCE/build/goalc/goalc $DEST
|
||||
cp $SOURCE/build/decompiler/extractor $DEST
|
||||
|
||||
strip $DEST/gk
|
||||
strip $DEST/goalc
|
||||
strip $DEST/extractor
|
||||
|
||||
mkdir -p $DEST/data
|
||||
mkdir -p $DEST/data/decompiler/
|
||||
mkdir -p $DEST/data/assets
|
||||
mkdir -p $DEST/data/game
|
||||
mkdir -p $DEST/data/log
|
||||
mkdir -p $DEST/data/game/graphics/opengl_renderer/
|
||||
|
||||
cp -r $SOURCE/decompiler/config $DEST/data/decompiler/
|
||||
cp -r $SOURCE/goal_src $DEST/data
|
||||
cp -r $SOURCE/game/assets $DEST/data/game/
|
||||
cp -r $SOURCE/game/graphics/opengl_renderer/shaders $DEST/data/game/graphics/opengl_renderer
|
||||
Reference in New Issue
Block a user