Fix Azure Pipelines

This commit is contained in:
Marquis Kurt 2019-05-12 19:03:20 -04:00
parent 378bbc4c39
commit 538842c36b
3 changed files with 33 additions and 18 deletions

View File

@ -1,18 +1,25 @@
steps:
- task: DownloadSecureFile@1
inputs:
secureFile: 'embedded.provisionprofile'
- task: DownloadSecureFile@1
inputs:
secureFile: 'entitlements.mac.plist'
- task: DownloadSecureFile@1
inputs:
secureFile: 'entitlements.mas.plist'
- task: DownloadSecureFile@1
inputs:
secureFile: 'info.plist'
- task: DownloadSecureFile@1
inputs:
secureFile: 'nonmas.provisionprofile'
- script: mv $(Agent.TempDirectory)/*.plist desktop/
- script: mv $(Agent.TempDirectory)/*.provisionprofile desktop/
- task: DownloadSecureFile@1
inputs:
secureFile: 'embedded.provisionprofile'
displayName: 'Download Mac App Store provisioning profile'
- task: DownloadSecureFile@1
inputs:
secureFile: 'nonmas.provisionprofile'
displayName: 'Download regular macOS provisioning profile'
- task: DownloadSecureFile@1
inputs:
secureFile: 'entitlements.mac.plist'
displayName: 'Download regular macOS entitlements'
- task: DownloadSecureFile@1
inputs:
secureFile: 'entitlements.mas.plist'
displayName: 'Download Mac App Store entitlements'
- task: DownloadSecureFile@1
inputs:
secureFile: 'info.plist'
displayName: 'Download info.plist'
- script: mv $(Agent.TempDirectory)/*.plist desktop/
displayName: 'Move entitlements and info to Electron folder'
- script: mv $(Agent.TempDirectory)/*.provisionprofile desktop/
displayName: 'Move provisioning profiles to Electron folder'

View File

@ -6,7 +6,7 @@ The new beautiful, fluffy client for the fediverse written in TypeScript and Rea
[![Matrix room](https://img.shields.io/matrix/hypermasto:matrix.org.svg)](https://matrix.to/#/#hypermasto:matrix.org)
[![Discord server](https://img.shields.io/discord/554108687434907660.svg?color=blueviolet&label=discord)](https://discord.gg/c69AXwk)
[![Build Status](https://travis-ci.com/hyperspacedev/hyperspace.svg)](https://travis-ci.com/alicerunsonfedora/hyperspace)
[![Build Status](https://dev.azure.com/hyperspacedev/Hyperspace/_apis/build/status/CI%20Tests?branchName=master)](https://dev.azure.com/hyperspacedev/Hyperspace/_build/latest?definitionId=1&branchName=master)
Hyperspace is the fluffiest client for Mastodon and other fediverse networks written in TypeScript and React. Hyperspace offers a fun, clean, fast, and responsive design that scales beautifully across devices and enhances the fediverse experience.

View File

@ -1,4 +1,12 @@
jobs:
- job: Web
pool:
vmImage: 'ubuntu-latest'
steps:
- template: .azure/setup.yml
- template: .azure/build-web.yml
displayName: 'Build static files'
- job: Linux
pool:
vmImage: 'ubuntu-latest'