feat: add GitHub Actions workflow for running builds on Windows
Signed-off-by: Stephen Simpson <ssimpson89@users.noreply.github.com>
This commit is contained in:
11
.github/workflows/docker-image-linux.yml
vendored
11
.github/workflows/docker-image-linux.yml
vendored
@@ -1,10 +1,11 @@
|
|||||||
name: Create and publish a Docker image for Linux
|
name: Create and publish a Docker image for Linux
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches:
|
||||||
|
- dev
|
||||||
|
- master
|
||||||
tags:
|
tags:
|
||||||
- 'v*.*' # Run only when version tags are pushed
|
- 'v*.*'
|
||||||
release:
|
|
||||||
types: [created]
|
|
||||||
workflow_dispatch: # Keep manual trigger for testing
|
workflow_dispatch: # Keep manual trigger for testing
|
||||||
|
|
||||||
env:
|
env:
|
||||||
@@ -41,9 +42,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
images: ${{ env.REGISTRY }}/${{ vars.USERNAME }}/${{ env.IMAGE_NAME }}
|
images: ${{ env.REGISTRY }}/${{ vars.USERNAME }}/${{ env.IMAGE_NAME }}
|
||||||
tags: |
|
tags: |
|
||||||
type=semver,pattern={{version}}
|
type=semver,pattern={{gitea.ref_name}}
|
||||||
type=semver,pattern={{major}}.{{minor}}
|
|
||||||
type=semver,pattern={{major}}
|
|
||||||
type=raw,value=latest,enable={{is_default_branch}}
|
type=raw,value=latest,enable={{is_default_branch}}
|
||||||
|
|
||||||
- name: Build and push both architectures
|
- name: Build and push both architectures
|
||||||
|
|||||||
34
.github/workflows/test.yml
vendored
Normal file
34
.github/workflows/test.yml
vendored
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
name: Run Actions
|
||||||
|
run-name: ${{ gitea.actor }} compiles
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- dev
|
||||||
|
- master
|
||||||
|
tags:
|
||||||
|
- '*.*.*'
|
||||||
|
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: powershell
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-plume:
|
||||||
|
runs-on: windows
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
build_configuration: ['Debug', 'Release']
|
||||||
|
steps:
|
||||||
|
- name: ref
|
||||||
|
run: echo ${{ github.event.ref }} # is null on PR otherwise refs/heads/dev on commit
|
||||||
|
- name: type
|
||||||
|
run: echo ${{ github.ref_type }} # is null on PR otherwise branch on commit
|
||||||
|
- name: ref_name
|
||||||
|
run: echo ${{ gitea.ref_name }} # is PR number on PR otherwise branch on commit
|
||||||
|
- name: distribute
|
||||||
|
if: ${{ (matrix.build_configuration == 'Release') && (gitea.ref_name == 'dev' || gitea.ref_type == 'tag') }}
|
||||||
|
run: echo ${{ gitea.ref_name }}
|
||||||
|
- name: notify
|
||||||
|
if: failure()
|
||||||
|
run: echo failure
|
||||||
Reference in New Issue
Block a user