Skip to content

Commit

Permalink
tf-nighlty
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderDokuchaev committed Nov 26, 2024
1 parent 2284df5 commit f748943
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
pull_request: # TODO:

jobs:
md-dead-link-check:
Expand All @@ -13,3 +14,28 @@ jobs:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: AlexanderDokuchaev/md-dead-link-check@cc3ed55268899a1a6d5fd7068abbc4591eab1f74 # v0.9

tensorflow:
timeout-minutes: 120
defaults:
run:
shell: bash
runs-on: ubuntu-20.04-8-cores
env:
DEBIAN_FRONTEND: noninteractive
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
lfs: true
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
python-version: 3.10.14
cache: pip
- name: Install NNCF and test requirements
run: |
pip install -e .
pip install -r tests/tensorflow/requirements.txt
- name: Print installed modules
run: pip list
- name: Run TensorFlow precommit
run: pytest tests/tensorflow -m 'nightly'

1 change: 1 addition & 0 deletions tests/tensorflow/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
-c ../../constraints.txt
-r ../../examples/tensorflow/requirements.txt
PyYAML
tensorflow-metadata==1.13.0
pytest
Expand Down

0 comments on commit f748943

Please sign in to comment.