diff --git a/.azure/mac-files.yml b/.azure/mac-files.yml index fb224e6..5347773 100644 --- a/.azure/mac-files.yml +++ b/.azure/mac-files.yml @@ -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/ \ No newline at end of file + - 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' \ No newline at end of file diff --git a/README.md b/README.md index 30561b4..226d8b0 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3eb8146..d43f94d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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'