Only main branch builds
Hello!
Please excuse me if this is a super newbie issue, but I am unable to get all branches to build, only the one marked as the main branch does.
I would like to use the artifact made by the main branch (called Future - I will have to rename it soonish) which is just a .dll file, copy it to the output of GUI branch and zip all that together.
Link to the project: https://ci.appveyor.com/project/Lovrom8/rscdlcenabler-2020edition
Currently I have this .yml configuration (it's not added to the repo itself, all is being done trough this site) :
version: 1.0.{build}
branches:
except:
- master
image: Visual Studio 2019
configuration: Release
build:
parallel: true
verbosity: quiet
artifacts:
- path: '**\*.zip'
name: GUI_Release
- path: '**\D3DX9_42.dll'
name: DLL
on_success:
- cmd: ''
on_finish:
- cmd: >-
REM 7z a RSMods.zip %APPVEYOR_BUILD_FOLDER%\RSMods\bin\Release\*.* -r
REM appveyor PushArtifact RSMods.zip
I commented out the zipping part, since I wasn't aware how to separate those events (or well, RSMods doesn't exist since it doesn't build)
Thank you!
Comments are currently closed for this discussion. You can start a new one.
Keyboard shortcuts
Generic
? | Show this help |
---|---|
ESC | Blurs the current field |
Comment Form
r | Focus the comment reply box |
---|---|
^ + ↩ | Submit the comment |
You can use Command ⌘
instead of Control ^
on Mac
Support Staff 1 Posted by Feodor Fitsner on 07 Aug, 2020 05:50 PM
Hi Lovro,
Just remove
branches.except
section from yourappveyor.yml
to build all branches.Feodor Fitsner closed this discussion on 07 Oct, 2020 09:03 PM.