mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
github actions replaces azure (release creation) (#788)
This commit is contained in:
parent
aeb199b1c1
commit
da7b02fc59
202
.azure.yml
202
.azure.yml
@ -1,156 +1,64 @@
|
||||
stages:
|
||||
- stage: Build
|
||||
displayName: Build packages
|
||||
jobs:
|
||||
|
||||
jobs:
|
||||
######################
|
||||
###### Linux #########
|
||||
######################
|
||||
|
||||
######################
|
||||
###### Linux #########
|
||||
######################
|
||||
- job: Linux
|
||||
timeoutInMinutes: 120
|
||||
pool:
|
||||
vmImage: 'ubuntu-16.04'
|
||||
strategy:
|
||||
matrix:
|
||||
AMD64 (x64):
|
||||
dockerTag: 'amd64'
|
||||
dockerName: 'Debian Stretch (AMD64)'
|
||||
platform: 'x11'
|
||||
ARMv6hf (Raspberry Pi v1 & ZERO):
|
||||
dockerTag: 'armv6hf'
|
||||
dockerName: 'Debian Stretch (Raspberry Pi v1 & ZERO)'
|
||||
platform: 'rpi'
|
||||
ARMv7hf (Raspberry Pi 2 & 3):
|
||||
dockerTag: 'armv7hf'
|
||||
dockerName: 'Debian Stretch (Raspberry Pi 2 & 3)'
|
||||
platform: 'rpi'
|
||||
ARMv8 (Generic AARCH64):
|
||||
dockerTag: 'aarch64'
|
||||
dockerName: 'ARMv8 (Generic AARCH64)'
|
||||
platform: 'amlogic'
|
||||
|
||||
- job: Linux
|
||||
timeoutInMinutes: 120
|
||||
pool:
|
||||
vmImage: 'ubuntu-16.04'
|
||||
strategy:
|
||||
matrix:
|
||||
AMD64 (x64):
|
||||
dockerTag: 'amd64'
|
||||
dockerName: 'Debian Stretch (AMD64)'
|
||||
platform: 'x11'
|
||||
ARMv6hf (Raspberry Pi v1 & ZERO):
|
||||
dockerTag: 'armv6hf'
|
||||
dockerName: 'Debian Stretch (Raspberry Pi v1 & ZERO)'
|
||||
platform: 'rpi'
|
||||
ARMv7hf (Raspberry Pi 2 & 3):
|
||||
dockerTag: 'armv7hf'
|
||||
dockerName: 'Debian Stretch (Raspberry Pi 2 & 3)'
|
||||
platform: 'rpi'
|
||||
ARMv8 (Generic AARCH64):
|
||||
dockerTag: 'aarch64'
|
||||
dockerName: 'ARMv8 (Generic AARCH64)'
|
||||
platform: 'amlogic'
|
||||
steps:
|
||||
- checkout: self # represents the repo where the initial Pipelines YAML file was found
|
||||
submodules: recursive # set to 'recursive' to get submodules of submodules
|
||||
|
||||
steps:
|
||||
- checkout: self # represents the repo where the initial Pipelines YAML file was found
|
||||
submodules: recursive # set to 'recursive' to get submodules of submodules
|
||||
# build process
|
||||
- bash: ./.ci/ci_build.sh
|
||||
displayName: 'Build $(dockerName) packages'
|
||||
env:
|
||||
DOCKER_TAG: $(dockerTag)
|
||||
DOCKER_NAME: $(dockerName)
|
||||
PLATFORM: $(platform)
|
||||
|
||||
# build process
|
||||
- bash: ./.ci/ci_build.sh
|
||||
displayName: 'Build $(dockerName) packages'
|
||||
env:
|
||||
DOCKER_TAG: $(dockerTag)
|
||||
DOCKER_NAME: $(dockerName)
|
||||
PLATFORM: $(platform)
|
||||
######################
|
||||
###### macOS #########
|
||||
######################
|
||||
|
||||
# move files
|
||||
- bash: 'mv -v deploy/Hyperion-* $(Build.ArtifactStagingDirectory) 2>/dev/null || :'
|
||||
workingDirectory: $(Build.SourcesDirectory)
|
||||
condition: and(succeeded(), ne(variables['system.pullrequest.isfork'], true), ne(variables['system.pullrequest.isfork'], true), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))
|
||||
displayName: 'Collect artifacts'
|
||||
- job: macOS
|
||||
timeoutInMinutes: 120
|
||||
pool:
|
||||
vmImage: 'macOS-10.14'
|
||||
|
||||
# publish artifacts
|
||||
- task: PublishBuildArtifacts@1
|
||||
inputs:
|
||||
pathtoPublish: $(Build.ArtifactStagingDirectory)
|
||||
ArtifactName: $(dockerTag)
|
||||
condition: and(succeeded(), in(variables['dockerTag'], 'amd64', 'armv6hf', 'armv7hf'), ne(variables['system.pullrequest.isfork'], true), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))
|
||||
displayName: 'Publish artifacts'
|
||||
steps:
|
||||
- checkout: self # represents the repo where the initial Pipelines YAML file was found
|
||||
submodules: recursive # set to 'recursive' to get submodules of submodules
|
||||
|
||||
######################
|
||||
###### macOS #########
|
||||
######################
|
||||
# install dependencies
|
||||
- bash: ./.ci/ci_install.sh
|
||||
displayName: 'Install dependencies'
|
||||
|
||||
- job: macOS
|
||||
timeoutInMinutes: 120
|
||||
pool:
|
||||
vmImage: 'macOS-10.14'
|
||||
|
||||
steps:
|
||||
- checkout: self # represents the repo where the initial Pipelines YAML file was found
|
||||
submodules: recursive # set to 'recursive' to get submodules of submodules
|
||||
|
||||
# install dependencies
|
||||
- bash: ./.ci/ci_install.sh
|
||||
displayName: 'Install dependencies'
|
||||
|
||||
# build process
|
||||
- bash: ./.ci/ci_build.sh
|
||||
env:
|
||||
PLATFORM: 'osx'
|
||||
condition: succeeded()
|
||||
displayName: 'Build macOS 10.13 packages'
|
||||
|
||||
# move files
|
||||
- bash: 'mv -v build/Hyperion-* $(Build.ArtifactStagingDirectory) 2>/dev/null || :'
|
||||
workingDirectory: $(Build.SourcesDirectory)
|
||||
condition: and(succeeded(), ne(variables['system.pullrequest.isfork'], true), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))
|
||||
displayName: 'Collect artifacts'
|
||||
|
||||
# publish artifacts
|
||||
- task: PublishBuildArtifacts@1
|
||||
inputs:
|
||||
pathtoPublish: $(Build.ArtifactStagingDirectory)
|
||||
ArtifactName: 'macos'
|
||||
condition: and(succeeded(), ne(variables['system.pullrequest.isfork'], true), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))
|
||||
displayName: 'Publish artifacts'
|
||||
|
||||
################################
|
||||
###### Publish Releases ########
|
||||
################################
|
||||
|
||||
- stage: Publish
|
||||
displayName: Publish Releases
|
||||
dependsOn:
|
||||
- Build
|
||||
condition: and(succeeded('Build'), ne(variables['system.pullrequest.isfork'], true), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))
|
||||
|
||||
jobs:
|
||||
- job: PublishReleases
|
||||
timeoutInMinutes: 120
|
||||
pool:
|
||||
vmImage: ubuntu-16.04
|
||||
|
||||
steps:
|
||||
- checkout: self # represents the repo where the initial Pipelines YAML file was found
|
||||
|
||||
# download deployables artifacts
|
||||
- task: DownloadPipelineArtifact@2
|
||||
inputs:
|
||||
path: $(Build.ArtifactStagingDirectory)
|
||||
displayName: Download artifacts
|
||||
|
||||
# read version file
|
||||
- bash: |
|
||||
echo "##vso[task.setvariable variable=semVer]$(cat version)"
|
||||
echo "##vso[task.setvariable variable=preRel]$(grep -oE 'alpha|beta' version)"
|
||||
workingDirectory: '$(Build.SourcesDirectory)'
|
||||
condition: succeeded()
|
||||
displayName: 'Read and generate pipeline variables'
|
||||
|
||||
# set release to pre-release
|
||||
- bash: echo '##vso[task.setvariable variable=preRelease;]true'
|
||||
condition: and(succeeded(), or(contains(variables['preRel'], 'alpha'), contains(variables['preRel'], 'beta')), ne(variables['system.pullrequest.isfork'], true), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))
|
||||
displayName: 'Mark alpha or beta as pre-release'
|
||||
|
||||
# create github releases
|
||||
- task: GithubRelease@0
|
||||
inputs:
|
||||
gitHubConnection: Hyperion-Bot
|
||||
repositoryName: $(Build.Repository.Name)
|
||||
action: create
|
||||
target: $(Build.SourceVersion)
|
||||
tagSource: manual
|
||||
tag: $(Build.SourceBranchName)
|
||||
title: 'Hyperion $(semVer)'
|
||||
assets: |
|
||||
$(Build.ArtifactStagingDirectory)/amd64/*
|
||||
$(Build.ArtifactStagingDirectory)/armv6hf/*
|
||||
$(Build.ArtifactStagingDirectory)/armv7hf/*
|
||||
$(Build.ArtifactStagingDirectory)/aarch64/*
|
||||
$(Build.ArtifactStagingDirectory)/macos/*
|
||||
assetUploadMode: 'replace'
|
||||
addChangeLog: false
|
||||
isPreRelease: $(preRelease)
|
||||
condition: succeeded()
|
||||
displayName: Create GitHub releases
|
||||
# build process
|
||||
- bash: ./.ci/ci_build.sh
|
||||
env:
|
||||
PLATFORM: 'osx'
|
||||
condition: succeeded()
|
||||
displayName: 'Build macOS 10.13 packages'
|
38
.github/workflows/deploy.yml
vendored
38
.github/workflows/deploy.yml
vendored
@ -1,38 +0,0 @@
|
||||
name: Build & Deploy
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
|
||||
######################
|
||||
#### Documentation ###
|
||||
######################
|
||||
|
||||
docs:
|
||||
name: Documentation
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
# Install dependencies
|
||||
- name: Setup node 12
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: '12'
|
||||
|
||||
# Build Docs
|
||||
- name: Build docs
|
||||
run: |
|
||||
cd docs
|
||||
npm install -g yarn
|
||||
yarn install
|
||||
yarn docs:build
|
||||
# Deploy to gh-pages
|
||||
- name: Deploy to gh-pages
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./docs/dist
|
||||
cname: docs.hyperion-project.org
|
79
.github/workflows/push-master.yml
vendored
79
.github/workflows/push-master.yml
vendored
@ -1,14 +1,18 @@
|
||||
name: Hyperion CI Build
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
branches-ignore:
|
||||
- 'gh-pages'
|
||||
- 'docker-ci'
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
|
||||
######################
|
||||
###### Linux #########
|
||||
######################
|
||||
|
||||
jobs:
|
||||
Linux:
|
||||
name: ${{ matrix.dockerName }}
|
||||
runs-on: ubuntu-latest
|
||||
@ -43,6 +47,13 @@ jobs:
|
||||
shell: bash
|
||||
run: ./.ci/ci_build.sh
|
||||
|
||||
# upload artifacts (only on tagged commit)
|
||||
- name: Upload artifacts
|
||||
if: startsWith(github.event.ref, 'refs/tags')
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
path: deploy/Hyperion-*
|
||||
|
||||
######################
|
||||
###### macOS #########
|
||||
######################
|
||||
@ -67,11 +78,18 @@ jobs:
|
||||
shell: bash
|
||||
run: ./.ci/ci_build.sh
|
||||
|
||||
# upload artifacts (only on tagged commit)
|
||||
- name: Upload artifacts
|
||||
if: startsWith(github.event.ref, 'refs/tags')
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
path: build/Hyperion-*
|
||||
|
||||
######################
|
||||
#### Documentation ###
|
||||
######################
|
||||
|
||||
docs:
|
||||
Docs:
|
||||
name: Documentation
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
@ -90,6 +108,59 @@ jobs:
|
||||
# Build Docs
|
||||
- name: Build docs
|
||||
run: |
|
||||
cd docs
|
||||
npm install -g yarn
|
||||
yarn install
|
||||
yarn docs:build
|
||||
|
||||
# Deploy to gh-pages (only on tagged commit)
|
||||
- name: Deploy to gh-pages
|
||||
if: startsWith(github.event.ref, 'refs/tags')
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./docs/dist
|
||||
cname: docs.hyperion-project.org
|
||||
|
||||
################################
|
||||
###### Publish Releases ########
|
||||
################################
|
||||
|
||||
publish:
|
||||
name: Publish Releases
|
||||
if: startsWith(github.event.ref, 'refs/tags')
|
||||
needs: [Linux, macOS, Docs]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
# generate environment variables
|
||||
- name: Generate environment variables from version and tag
|
||||
run: |
|
||||
echo ::set-env name=TAG::${GITHUB_REF/refs\/tags\//}
|
||||
echo ::set-env name=VERSION::$(tr -d '\n' < version)
|
||||
echo ::set-env name=preRelease::false
|
||||
|
||||
# If version contains alpha or beta, mark draft release as pre-release
|
||||
- name: Mark release as pre-release
|
||||
if: contains(env.VERSION, 'alpha') || contains(env.VERSION, 'beta')
|
||||
run: echo ::set-env name=preRelease::true
|
||||
|
||||
# Download artifacts from previous build process
|
||||
- name: Download artifacts
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
path: artifacts
|
||||
|
||||
# create draft release and upload artifacts
|
||||
- name: Create draft release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
name: Hyperion ${{ env.VERSION }}
|
||||
tag_name: ${{ env.TAG }}
|
||||
files: "artifacts/**"
|
||||
draft: true
|
||||
prerelease: ${{ env.preRelease }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
Loading…
Reference in New Issue
Block a user