mirror of
https://github.com/digarok/buckshot.git
synced 2025-02-20 06:28:58 +00:00
test workflow
This commit is contained in:
parent
b7763dda43
commit
91640743fa
26
.github/workflows/release.yml
vendored
Normal file
26
.github/workflows/release.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
name: Release Builds
|
||||
on: push
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
jobs:
|
||||
build-and-store-artifact:
|
||||
name: Build
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ macos-latest ]
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: ilammy/msvc-dev-cmd@v1
|
||||
- name: Make GNU
|
||||
if: matrix.os != 'windows-latest'
|
||||
working-directory: ./buckshot
|
||||
run: qmake ; make
|
||||
shell: bash
|
||||
- name: Make Windows
|
||||
if: matrix.os == 'windows-latest'
|
||||
working-directory: ./src
|
||||
run: qmake ; make
|
||||
- name: Install Qt
|
||||
uses: jurplel/install-qt-action@v2
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
.DS_Store
|
||||
|
||||
build-buckshot-Desktop*
|
||||
*.o
|
||||
|
Loading…
x
Reference in New Issue
Block a user