12 Commits

Author SHA1 Message Date
b0e92ef197 update version 2024-11-08 18:12:10 +00:00
81135f0c3a update version 2024-11-08 18:11:28 +00:00
8505ca3a4e use just profile 2024-11-08 18:04:47 +00:00
9262ee0fa4 fix of fix 2024-11-08 17:45:32 +00:00
eb61d5f483 fix install.sh 2024-11-08 17:45:07 +00:00
e63568bc9c try fix 2024-11-08 17:34:25 +00:00
6d994d865c fix 2024-11-08 17:23:56 +00:00
d2c3ae7904 update install.sh 2024-11-08 17:21:51 +00:00
53343866d9 update 2024-11-08 17:18:44 +00:00
Егор
048965ba75 Update test.yml
fix runner name
2024-11-08 21:57:58 +05:00
Егор
9b3be45832 Update install.sh 2024-11-08 21:55:46 +05:00
Егор
fb37fd61a8 Update install.sh 2024-11-08 21:55:09 +05:00
5 changed files with 15 additions and 7 deletions

View File

@@ -48,7 +48,7 @@ jobs:
shell: cmd shell: cmd
build-Installer: build-Installer:
runs-on: windowd-latest runs-on: windows-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View File

@@ -123,10 +123,17 @@ sudo ln -sf /usr/lib/libmpfr.so.6 /usr/lib/libmpfr.so.4
print_ok "Successfully!" print_ok "Successfully!"
if ! grep -q 'export PATH=$PATH:$TOOLCHAIN_DIR/win32/bin' ~/.bashrc; then if ! grep -q 'export PATH=$PATH:/home/autobuild/tools/win32/bin' ~/.bashrc; then
export PATH=$PATH:/home/autobuild/tools/win32/bin export PATH=$PATH:/home/autobuild/tools/win32/bin
print_msg "Adding '$TOOLCHAIN_DIR/win32/bin' to '~/.bashrc'" print_msg "Adding '$TOOLCHAIN_DIR/win32/bin' to '~/.bashrc'"
echo 'export PATH=$PATH:$TOOLCHAIN_DIR/win32/bin' >> ~/.bashrc echo 'export PATH=$PATH:/home/autobuild/tools/win32/bin' >> ~/.bashrc
fi
if ["$EUID" -ne 0 ]
then
echo 'PATH=$PATH:/home/autobuild/tools/win32/bin' >> /etc/profile
else
print_msg "You must be logined as root!"
fi fi
cd "$OLDPWD" cd "$OLDPWD"

View File

@@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "KolibriOS gcc toolchain" #define MyAppName "KolibriOS gcc toolchain"
#define MyAppVersion "0.1.1" #define MyAppVersion "0.1.2"
#define MyAppPublisher "Egor00f" #define MyAppPublisher "Egor00f"
#define MyAppURL "https://github.com/Egor00f/kolibrios-gcc-toolchain" #define MyAppURL "https://github.com/Egor00f/kolibrios-gcc-toolchain"

View File

@@ -1,5 +1,5 @@
Package: kos32-gcc Package: kos32-gcc
Version: 0.1.1 Version: 0.1.2
Architecture: all Architecture: all
Section: devel Section: devel
Depends: libc6-i386:amd64, libmpc3:amd64 Depends: libc6-i386:amd64, libmpc3:amd64

View File

@@ -1,3 +1,4 @@
#!/bin/bash #!/bin/bash
rm -R /home/autobuild/tools/win32 rm -R /home/autobuild/tools/win32
sed 'PATH=$PATH:/home/autobuild/tools/win32/bin' /etc/profile