chicken-package/.circleci/config.yml

27 lines
1,001 B
YAML
Raw Normal View History

2020-03-01 19:06:14 +00:00
version: 2.1
orbs:
win: circleci/windows@2.2.0
jobs:
build:
executor: win/default
2020-03-01 19:28:19 +00:00
environment:
version: '5.2.0'
binaryversion: '11'
2020-03-01 19:06:14 +00:00
steps:
- checkout
2020-03-01 19:29:06 +00:00
- run: iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
2020-03-01 22:46:14 +00:00
- run: Install-Module -Name 7Zip4Powershell -Force -Scope CurrentUser
- run: choco install -y msys2
2020-03-01 23:16:01 +00:00
- run: |
Invoke-WebRequest -UseBasicParsing -Uri "https://code.call-cc.org/releases/$Env:version/chicken-$Env:version.tar.gz" -OutFile '.\chicken.tar.gz'
Expand-7Zip chicken.tar.gz -TargetPath '.\'
Expand-7Zip chicken.tar -TargetPath '.\'
Remove-Item -Force chicken.tar.gz
Remove-Item -Force chicken.tar
mv chicken-* chickenbuild
2020-03-01 19:06:14 +00:00
- run: .\build.ps1
2020-03-01 22:57:48 +00:00
- run: choco apikey --key $Env:CHOCO_API_KEY --source https://push.chocolatey.org
2020-03-01 23:06:25 +00:00
- run: choco push chicken.$Env:version.nupkg --source https://push.chocolatey.org