Author Topic: Daily Windows Build available.  (Read 84834 times)

dabone

  • Full Member
  • ***
  • Posts: 28
    • View Profile
Daily Windows Build available.
« on: July 10, 2018, 03:50:52 PM »
I've setup a daily build for windows executables (32 and 64 bit)  and it updates nightly at 12:05 est (GMT -5).

http://dabone.xyz/attract/attract-daily.zip




2020 Update....
Rebuilt my environment from scratch, so we are currently sitting at.

(Windows, SFML 2.5.1 +SWF +7z +Curl)
avcodec 58.54.100 / avformat 58.29.100 / swscale 5.5.100 / avutil 56.31.100 / swresample 3.5.100



Still at the same location.



« Last Edit: November 21, 2020, 12:06:55 PM by dabone »

progets

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 1271
    • View Profile
Re: Daily Windows Build available.
« Reply #1 on: July 10, 2018, 11:41:11 PM »
I think that's great and will help a lot of people to test and use new features before the public releases.

There used to be a buildbot nightly version link on the website but it was removed because it wasn't very reliable. If your nightly build is reliable, I hope to see this thread as a sticky.

Thanks.


iOtero

  • Sr. Member
  • ****
  • Posts: 414
    • View Profile
Re: Daily Windows Build available.
« Reply #2 on: July 11, 2018, 02:54:29 AM »
Thanks,i have never managed to compile on Windows, and i have tried it several times.
In MAC, yes, in Macos High Sierra, in Mountain Lion, either.
In Linux i have not tried it.
« Last Edit: July 11, 2018, 04:06:56 AM by zlagos »
Nacer a los 15 años Una novela de iOtero

dabone

  • Full Member
  • ***
  • Posts: 28
    • View Profile
Re: Daily Windows Build available.
« Reply #3 on: July 11, 2018, 01:34:45 PM »
It's the windows build, done in linux.. :)


Later,
dabone

7ank0v1c

  • Full Member
  • ***
  • Posts: 31
  • For the LORD is good and his love endures forever
    • View Profile
Re: Daily Windows Build available.
« Reply #4 on: July 11, 2018, 02:08:47 PM »
Thanks a lot for this man, I desperately was trying to compile this the last week and I wasted many hours with no success. Compiling is beyond me, to be honest, and I would consider myself an advanced computer user outside of this.

Thanks again  ;D
For the LORD is good and his love endures forever; his faithfulness continues through all generations. - Psalm 100:5

iOtero

  • Sr. Member
  • ****
  • Posts: 414
    • View Profile
Re: Daily Windows Build available.
« Reply #5 on: July 12, 2018, 09:26:06 AM »
What i wanted to say is that yes i compiled AM on MAC OS High Sierra.
I not compiled AM on MAC OS X Mountain Lion, although i have tried.
I not compiled AM on Windows native, although i have tried.
I not compiled AM on Windows cross-compile (linux).
And i have not tried compiling AM in Linux to use it in Linux.

I Need AM in Mac Os X Mountain Lion and Lubuntu 16.04 or 18.04.  I'm not asking, i just comment on my needs. With the Windows version my biggest need has been covered. Thank you very much.

Sorry, i am spanish, my english is limited...

« Last Edit: July 12, 2018, 09:31:55 AM by zlagos »
Nacer a los 15 años Una novela de iOtero

IceLancer

  • Full Member
  • ***
  • Posts: 44
    • View Profile
Re: Daily Windows Build available.
« Reply #6 on: July 12, 2018, 01:56:50 PM »
Can u build version with console ON?
Quote
is now split into two different builds - regular and console

dabone

  • Full Member
  • ***
  • Posts: 28
    • View Profile
Re: Daily Windows Build available.
« Reply #7 on: July 15, 2018, 10:24:16 AM »
Ok, done.
Download and extract.
Gui and console versions are now there.


Later,
dabone

7ank0v1c

  • Full Member
  • ***
  • Posts: 31
  • For the LORD is good and his love endures forever
    • View Profile
Re: Daily Windows Build available.
« Reply #8 on: July 15, 2018, 01:26:18 PM »
Thanks again Dabone =D
For the LORD is good and his love endures forever; his faithfulness continues through all generations. - Psalm 100:5

dabone

  • Full Member
  • ***
  • Posts: 28
    • View Profile
Re: Daily Windows Build available.
« Reply #9 on: July 15, 2018, 06:21:18 PM »
Here's the script I have running currently. if anyone is wondering.

Code: [Select]
#!/bin/bash
export PATH=$PATH:/home/user/mxe/usr/bin
now=$(date +"%m_%d_%Y")
x64="attract-64_$now.exe"
x86="attract-86_$now.exe"
x64c="attract-64console_$now.exe"
x86c="attract-86console_$now.exe"
git clone https://github.com/mickelson/attract attract-daily
cd attract-daily
make clean
make -j 6 CROSS=1 TOOLCHAIN=i686-w64-mingw32.static WINDOWS_STATIC=1
mv attract.exe $x86
make clean
make -j 6 CROSS=1 TOOLCHAIN=i686-w64-mingw32.static WINDOWS_STATIC=1 WINDOWS_CONSOLE=1
mv attract.exe $x86c
make clean
make -j 6 CROSS=1 TOOLCHAIN=x86_64-w64-mingw32.static WINDOWS_STATIC=1
mv attract.exe $x64
make clean
make -j 6 CROSS=1 TOOLCHAIN=x86_64-w64-mingw32.static WINDOWS_STATIC=1 WINDOWS_CONSOLE=1
mv attract.exe $x64c
zip attract-daily.zip $x64 $x86 $x64c $x86c
cp attract-daily.zip /media/web/SVFDTN/attract/attract-daily.zip
cd  ..
rm -rf attract-daily

Later,
dabone

iOtero

  • Sr. Member
  • ****
  • Posts: 414
    • View Profile
Re: Daily Windows Build available.
« Reply #10 on: July 24, 2018, 12:13:06 PM »
Why this thread is not pinned?
Nacer a los 15 años Una novela de iOtero

dabone

  • Full Member
  • ***
  • Posts: 28
    • View Profile
Re: Daily Windows Build available.
« Reply #11 on: August 07, 2018, 12:00:58 PM »
bump

bundangdon

  • Sr. Member
  • ****
  • Posts: 212
    • View Profile
Re: Daily Windows Build available.
« Reply #12 on: August 14, 2018, 08:46:47 PM »
This is extremely helpful! Thank you for sharing and I agree that this thread should be pinned at the top

toothlessgrinn

  • Sr. Member
  • ****
  • Posts: 190
    • View Profile
Re: Daily Windows Build available.
« Reply #13 on: August 14, 2018, 11:37:10 PM »
DUDE!!! you are the shiznizle!!!! thank you!!!!
we came , we saw , we lost LOTS of quarters...

Win 7
Asus mobo amd 64bit 3core
12g ram
4 player. Custom built woody cab
46" plasma screen with 22" marquee

progets

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 1271
    • View Profile
Re: Daily Windows Build available.
« Reply #14 on: August 17, 2018, 11:04:42 PM »
@dabone - I think this daily build is great and helpful for people to upgrade. I noticed that if it's used for a new build it doesn't create and populate several of the folders like the public releases of AttractMode do such as: intro, language, layouts, loader, modules, plugins, etc.

Is this intentional, an oversight or just a limitation of your script? I'm not complaining and think it's a great asset but could it be better (more complete)? If someone new to AM uses just your daily build they will have an incomplete and usable (due to lack of any layouts) install.

P.S. This became apparent when I looked at today's build but didn't get/see the recent plugin commit.
« Last Edit: August 17, 2018, 11:16:30 PM by progets »