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: steps:
- task: DownloadSecureFile@1 - task: DownloadSecureFile@1
inputs: inputs:
secureFile: 'embedded.provisionprofile' secureFile: 'embedded.provisionprofile'
- task: DownloadSecureFile@1 displayName: 'Download Mac App Store provisioning profile'
inputs: - task: DownloadSecureFile@1
secureFile: 'entitlements.mac.plist' inputs:
- task: DownloadSecureFile@1 secureFile: 'nonmas.provisionprofile'
inputs: displayName: 'Download regular macOS provisioning profile'
secureFile: 'entitlements.mas.plist' - task: DownloadSecureFile@1
- task: DownloadSecureFile@1 inputs:
inputs: secureFile: 'entitlements.mac.plist'
secureFile: 'info.plist' displayName: 'Download regular macOS entitlements'
- task: DownloadSecureFile@1 - task: DownloadSecureFile@1
inputs: inputs:
secureFile: 'nonmas.provisionprofile' secureFile: 'entitlements.mas.plist'
- script: mv $(Agent.TempDirectory)/*.plist desktop/ displayName: 'Download Mac App Store entitlements'
- script: mv $(Agent.TempDirectory)/*.provisionprofile desktop/ - 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) [![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) [![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. 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: jobs:
- job: Web
pool:
vmImage: 'ubuntu-latest'
steps:
- template: .azure/setup.yml
- template: .azure/build-web.yml
displayName: 'Build static files'
- job: Linux - job: Linux
pool: pool:
vmImage: 'ubuntu-latest' vmImage: 'ubuntu-latest'