mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 23:19:11 +00:00
42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
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.8
|
|
- 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
|