forked from openvinotoolkit/nncf
-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (50 loc) · 1.66 KB
/
nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: nightly
permissions: read-all
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
install:
if: github.repository_owner == 'openvinotoolkit'
uses: ./.github/workflows/install.yml
examples:
if: github.repository_owner == 'openvinotoolkit'
uses: ./.github/workflows/examples.yml
md-dead-link-check:
runs-on: ubuntu-latest
if: github.repository_owner == 'openvinotoolkit'
timeout-minutes: 10
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: AlexanderDokuchaev/md-dead-link-check@c7210ef8a38c194a119834e39d212387d19b512c # v1.1.0
tensorflow:
runs-on: ubuntu-latest-8-cores
if: github.repository_owner == 'openvinotoolkit'
timeout-minutes: 60
defaults:
run:
shell: bash
env:
DEBIAN_FRONTEND: noninteractive
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
lfs: true
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
with:
python-version: 3.10.14
- name: Install NNCF and test requirements
run: pip install -e . -r tests/tensorflow/requirements.txt
- name: Print installed modules
run: pip list
- name: Run TensorFlow precommit
run: pytest tests/tensorflow -m 'nightly'
weight-compression:
if: github.repository_owner == 'openvinotoolkit'
uses: ./.github/workflows/conformance_weight_compression.yml
precommit-windows:
if: github.repository_owner == 'openvinotoolkit'
uses: ./.github/workflows/call_precommit_windows.yml
with:
python_version: "3.10"