Update-AppveyorBuild equivalent for macOS
I'm currently using a windows VM to build, and running a powershell command
```ps
Update-AppveyorBuild -Version "$(Get-Date -format yyyy.M).$env:appveyor_build_number"
```
I'd like to switch over to macos and I wonder if there's an equivalent `sh` command that I can run?
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 17 Nov, 2020 10:11 PM
You can use the same PowerShell code in Linux builds.
Alternatively, you can use
appveyor
CLI as shown here: https://www.appveyor.com/docs/build-worker-api/#command-line-62 Posted by chase.florell on 17 Nov, 2020 10:35 PM
Thank you for that answer, Will the build number variable be the same (hoping to know without having to burn a build number to test).
`appveyor_build_number`
`appveyor UpdateBuild -Version "${$(date '+%Y.%m')}.${$appveyor_build_number}"`
Support Staff 3 Posted by Feodor Fitsner on 17 Nov, 2020 10:37 PM
Must be CAPS_LOCK on Linux as their names are case-sensitive.
Feodor Fitsner closed this discussion on 18 Jan, 2021 09:03 PM.