xenia-canary/.github/workflows/main.yml

88 lines
2.3 KiB
YAML
Raw Normal View History

2019-10-26 09:32:32 +00:00
name: main
2019-11-02 09:38:27 +00:00
on:
push:
branches-ignore:
- 'gh-pages'
- 'master'
2019-11-02 09:38:27 +00:00
paths-ignore:
- '.github/CONTRIBUTING.md'
- '.github/FUNDING.md'
- '.github/ISSUE_TEMPLATE.md'
- 'docs/**'
- '.appveyor.yml'
2020-01-16 16:51:48 +00:00
- '.azure-pipelines.yml'
- '.travis.yml'
- 'LICENSE'
- 'README.md'
2019-11-02 09:38:27 +00:00
pull_request:
branches-ignore:
- 'gh-pages'
- 'master'
2019-11-02 09:38:27 +00:00
paths-ignore:
- '.github/CONTRIBUTING.md'
- '.github/FUNDING.md'
- '.github/ISSUE_TEMPLATE.md'
- 'docs/**'
- '.appveyor.yml'
2020-01-16 16:51:48 +00:00
- '.azure-pipelines.yml'
- '.travis.yml'
- 'LICENSE'
- 'README.md'
2019-10-26 09:32:32 +00:00
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
cpu_arch: [AVX, AVX2, AVX512]
2019-10-26 09:32:32 +00:00
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
2019-10-26 09:32:32 +00:00
- name: Setup
run: .\xb setup
- name: Build
run: .\xb build --cpu_arch=${{matrix.cpu_arch}} --target=src\xenia-app --target=src\xenia-vfs-dump
2019-10-26 09:32:32 +00:00
- name: Prepare artifacts
run: |
robocopy build\bin\Windows\Release artifacts xenia*.exe
2019-10-26 09:32:32 +00:00
robocopy . artifacts LICENSE
$LastExitCode = 0
cd artifacts
7z a ..\xenia-canary.zip LICENSE xenia-canary.exe
2019-10-26 09:32:32 +00:00
- uses: actions/upload-artifact@master
with:
name: xenia-canary-${{matrix.cpu_arch}}
path: artifacts
- name: Create Release
if: github.event.action != 'pull_request' && github.ref == 'refs/heads/canary' && matrix.cpu_arch == 'AVX'
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
tag_name: tag-${{github.sha}}
release_name: xenia-canary-${{github.sha}}
body: |
Changes in this Release
- First Change
- Second Change
- name: Upload Release Asset
if: github.event.action != 'pull_request' && github.ref == 'refs/heads/canary' && matrix.cpu_arch == 'AVX'
id: upload-release-asset
uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
upload_url: ${{steps.create_release.outputs.upload_url}}
asset_path: ./xenia-canary.zip
asset_name: xenia-canary.zip
asset_content_type: application/zip