Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Commit the source only after the binaries have been committed. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ac72f11233424080a9ca6c715be1759e |
User & Date: | tinus 2019-03-16 12:04:13.048 |
Context
2019-03-16
| ||
15:47 | Copy ReleaseNotes.txt from 32-bits to 64-bits release. Commit both releases with just the version number. Leaf check-in: a47f28d42f user: tinus tags: trunk | |
12:04 | Commit the source only after the binaries have been committed. check-in: ac72f11233 user: tinus tags: trunk | |
11:02 | Copy files from 32-bits to 64-bits version in publish script. check-in: 9610d68156 user: tinus tags: trunk, release-src, src-1.3.2.0 | |
Changes
Changes to publish.cmd.
︙ | ︙ | |||
8 9 10 11 12 13 14 | :: call the WSF script to extract the current version number from the .dproj file CScript //nologo "%~f0?.wsf" > set_version.bat call set_version.bat del set_version.bat echo Preparing to build and release of version "%RELEASE_VERSION%" from branch: | | | > < < < > > > > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | :: call the WSF script to extract the current version number from the .dproj file CScript //nologo "%~f0?.wsf" > set_version.bat call set_version.bat del set_version.bat echo Preparing to build and release of version "%RELEASE_VERSION%" from branch: fossil tag list --raw current echo Press Ctrl-C to abort publication; pause :: copy all files from the 32-bits output folder to the 64-bits output folder copy /y /b /v out\Win32\Release\* out\Win64\Release del "out\Win64\Release\This is the 32-bits plugin.txt" :: prepare to build the DLLs call rsvars.bat MSBuild /v:q /p:Config=Release;Platform=Win32 /t:build src\prj\PreviewHTML.dproj > out\PreviewHTML_Win32.txt if errorlevel 1 echo Compilation errors, aborting... && start "" out\PreviewHTML_Win32.txt && goto TheEnd MSBuild /v:q /p:Config=Release;Platform=Win64 /t:build src\prj\PreviewHTML.dproj > out\PreviewHTML_Win64.txt if errorlevel 1 echo Compilation errors, aborting... && start "" out\PreviewHTML_Win64.txt && goto TheEnd pushd %~dp0\out\Win32\Release if not exist _FOSSIL_ echo goto NoPublicationRepo start /wait "Release notes" ReleaseNotes.txt fossil commit --tag v%RELEASE_VERSION%-32 --tag v%RELEASE_VERSION% popd pushd %~dp0\out\Win64\Release if not exist _FOSSIL_ goto NoPublicationRepo start /wait "Release notes" ReleaseNotes.txt fossil commit --tag v%RELEASE_VERSION%-64 --tag v%RELEASE_VERSION% popd :: Commit the source code fossil commit --tag src-%RELEASE_VERSION% --tag release-src fossil tag add src-%RELEASE_VERSION% current fossil tag add release-src current goto TheEnd :NoPublicationRepo echo There is no publication repository rooted in "%CD%"! popd :TheEnd |
︙ | ︙ |