Compare commits

..

3 Commits

Author SHA1 Message Date
William Bell
f9490ceac0 bloody ai 2025-08-16 18:28:50 +01:00
William Bell
4cda311008 bloody ai 2025-08-16 18:25:46 +01:00
William Bell
b3aa653076 incorrect environment variable assignment 2025-08-16 18:20:12 +01:00
3 changed files with 5 additions and 8 deletions

View File

@@ -49,7 +49,7 @@ jobs:
run: | run: |
TAG=${GITHUB_REF##refs/tags/} TAG=${GITHUB_REF##refs/tags/}
OS=$(uname -s | tr '[:upper:]' '[:lower:]') OS=$(uname -s | tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m) ARCH=${{ matrix.arch }}
FOLDER="chloride-$TAG-$OS-$ARCH" FOLDER="chloride-$TAG-$OS-$ARCH"
TAR="$FOLDER.tar.gz" TAR="$FOLDER.tar.gz"
mv build/bin "$FOLDER" mv build/bin "$FOLDER"

View File

@@ -6,10 +6,7 @@ compiler.version=12
compiler.libcxx=libstdc++11 compiler.libcxx=libstdc++11
build_type=Release build_type=Release
[env] [conf]
CC=aarch64-linux-gnu-gcc tools.build:compiler_executables={"c": "/usr/bin/gcc-aarch64-linux-gnu"}
CXX=aarch64-linux-gnu-g++ tools.cmake.cmaketoolchain:system_name=Linux
AR=aarch64-linux-gnu-ar tools.cmake.cmaketoolchain:system_processor=aarch64
RANLIB=aarch64-linux-gnu-ranlib
LD=aarch64-linux-gnu-ld
STRIP=aarch64-linux-gnu-strip