Add placeholder workflows to faciliate development in a branch

The objective is to split up the workflows, which requires the existence
of the *new* workflow files in the master branch in order to trigger
test builds in a branch.
This commit is contained in:
Simon Hausmann 2021-11-19 14:00:25 +01:00
parent d3542c825f
commit 231d46bd69
4 changed files with 86 additions and 0 deletions

22
.github/workflows/build_docs.yaml vendored Normal file
View file

@ -0,0 +1,22 @@
# LICENSE BEGIN
# This file is part of the SixtyFPS Project -- https://sixtyfps.io
# Copyright (c) 2021 Olivier Goffart <olivier.goffart@sixtyfps.io>
# Copyright (c) 2021 Simon Hausmann <simon.hausmann@sixtyfps.io>
#
# SPDX-License-Identifier: GPL-3.0-only
# This file is also available under commercial licensing terms.
# Please contact info@sixtyfps.io for more information.
# LICENSE END
# Build various demo binaries, c++ packages and documentation and publish them on the website
name: Build docs
on:
workflow_dispatch:
workflow_call:
jobs:
docs:
runs-on: ubuntu-20.04
steps:
- name: Dummy
run: echo ok

22
.github/workflows/nightly_snapshot.yaml vendored Normal file
View file

@ -0,0 +1,22 @@
# LICENSE BEGIN
# This file is part of the SixtyFPS Project -- https://sixtyfps.io
# Copyright (c) 2021 Olivier Goffart <olivier.goffart@sixtyfps.io>
# Copyright (c) 2021 Simon Hausmann <simon.hausmann@sixtyfps.io>
#
# SPDX-License-Identifier: GPL-3.0-only
# This file is also available under commercial licensing terms.
# Please contact info@sixtyfps.io for more information.
# LICENSE END
# Build various demo binaries, c++ packages and documentation and publish them on the website
name: Nightly snapshot
on:
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-20.04
steps:
- name: Dummy
run: echo ok

21
.github/workflows/wasm_demos.yaml vendored Normal file
View file

@ -0,0 +1,21 @@
# LICENSE BEGIN
# This file is part of the SixtyFPS Project -- https://sixtyfps.io
# Copyright (c) 2021 Olivier Goffart <olivier.goffart@sixtyfps.io>
# Copyright (c) 2021 Simon Hausmann <simon.hausmann@sixtyfps.io>
#
# SPDX-License-Identifier: GPL-3.0-only
# This file is also available under commercial licensing terms.
# Please contact info@sixtyfps.io for more information.
# LICENSE END
name: Build wasm demos
on:
workflow_dispatch:
workflow_call:
jobs:
wasm_demo:
runs-on: ubuntu-20.04
steps:
- name: Dummy
run: echo ok

View file

@ -0,0 +1,21 @@
# LICENSE BEGIN
# This file is part of the SixtyFPS Project -- https://sixtyfps.io
# Copyright (c) 2021 Olivier Goffart <olivier.goffart@sixtyfps.io>
# Copyright (c) 2021 Simon Hausmann <simon.hausmann@sixtyfps.io>
#
# SPDX-License-Identifier: GPL-3.0-only
# This file is also available under commercial licensing terms.
# Please contact info@sixtyfps.io for more information.
# LICENSE END
name: Build the web editor and the interpreter wasm module
on:
workflow_dispatch:
workflow_call:
jobs:
wasm:
runs-on: ubuntu-20.04
steps:
- name: Dummy
run: echo ok