chore(license): bumped copyright year to 2024 #104
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
- dev/* | |
pull_request: {} | |
workflow_dispatch: {} | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-latest | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y --no-install-recommends \ | |
python3-opencv python3-pil python3-tqdm python3-dev \ | |
libvulkan-dev glslang-dev glslang-tools swig | |
pip install wheel | |
- name: Build wheels | |
run: | | |
pip wheel -w /tmp/wheels \ | |
rife-ncnn-vulkan-python@git+https://github.com/media2x/rife-ncnn-vulkan-python.git . | |
- name: Package artifacts | |
run: | | |
tar cJvf /tmp/video2x-nightly-wheels.txz /tmp/wheels/* | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: video2x-nightly-wheels | |
path: /tmp/video2x-nightly-wheels.txz |