mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-01 22:31:14 +00:00
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:
parent
d3542c825f
commit
231d46bd69
4 changed files with 86 additions and 0 deletions
22
.github/workflows/build_docs.yaml
vendored
Normal file
22
.github/workflows/build_docs.yaml
vendored
Normal 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
22
.github/workflows/nightly_snapshot.yaml
vendored
Normal 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
21
.github/workflows/wasm_demos.yaml
vendored
Normal 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
|
21
.github/workflows/wasm_editor_and_interpreter.yaml
vendored
Normal file
21
.github/workflows/wasm_editor_and_interpreter.yaml
vendored
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue