Skip to content

Commit

Permalink
Revert "Store build logs in subdirectories per branch and per month"
Browse files Browse the repository at this point in the history
The build server currently doesn't have rsync permissions to the webhost.
This commit can be restored once the proper permissions are there.

This reverts commit 8073b34.
  • Loading branch information
gjanssens committed Aug 22, 2019
1 parent b1a9e07 commit 03242a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 62 deletions.
4 changes: 2 additions & 2 deletions buildserver/build_package.ps1
Expand Up @@ -99,7 +99,7 @@ bash-command -command "cd $script_unix && git pull"
bash-command -command "echo Build Started $time_stamp > $log_unix"
#copy the file to the download server so that everyone can see we've started
if ($hostname) {
bash-command -command "$script_unix/buildserver/upload_build_log.sh $log_unix $hostname $log_dir $branch"
bash-command -command "scp -p $log_unix $hostname/$log_dir/"
}

# Update MinGW-w64
Expand Down Expand Up @@ -142,7 +142,7 @@ bash-command -command "echo Build Ended $time_stamp >> $log_unix"

# Copy the transcript and installer to the download server and delete them.
if ($hostname) {
bash-command -command "$script_unix/buildserver/upload_build_log.sh $log_unix $hostname $log_dir $branch"
bash-command -command "scp -p $log_unix $hostname/$log_dir/"
if ($new_file) {
bash-command -command "scp -p $setup_file $hostname/$branch"
}
Expand Down
59 changes: 0 additions & 59 deletions buildserver/upload_build_log.sh

This file was deleted.

2 changes: 1 addition & 1 deletion setup-mingw64.ps1
Expand Up @@ -234,7 +234,7 @@ bash-command -command "pacman -Syyuu --noconfirm"

# Set up aliases for the parts of msys-devtools and mingw-w64-toolchain that
# we need:
$devel = "asciidoc autoconf autoconf2.13 autogen automake-wrapper automake1.10 automake1.11 automake1.12 automake1.13 automake1.14 automake1.15 automake1.6 automake1.7 automake1.8 automake1.9 bison diffstat diffutils dos2unix file flex gawk gettext gettext-devel gperf grep groff intltool libtool m4 make man-db pacman pactoys-git patch patchutils perl pkg-config rsync2 sed swig texinfo texinfo-tex wget xmlto git jhbuild-git texinfo"
$devel = "asciidoc autoconf autoconf2.13 autogen automake-wrapper automake1.10 automake1.11 automake1.12 automake1.13 automake1.14 automake1.15 automake1.6 automake1.7 automake1.8 automake1.9 bison diffstat diffutils dos2unix file flex gawk gettext gettext-devel gperf grep groff intltool libtool m4 make man-db pacman pactoys-git patch patchutils perl pkg-config sed swig texinfo texinfo-tex wget xmlto git jhbuild-git texinfo"

$toolchain = "binutils cmake crt-git gcc gcc-libs gdb headers-git libmangle-git libtool libwinpthread-git make pkg-config tools-git winpthreads-git"

Expand Down

0 comments on commit 03242a9

Please sign in to comment.