Skip to content

Commit

Permalink
Add workflows to test tf2.14 (#69)
Browse files Browse the repository at this point in the history
* Add workflows to test tf2.14

* update tf version in pip test suite workflow

---------

Co-authored-by: reuvenp <[email protected]>
  • Loading branch information
reuvenperetz and reuvenp authored Oct 22, 2023
1 parent e1d7f11 commit 8cc9a52
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/workflows/run_comp_test_tf214_v13.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Run Backward Compatibility Test - Tensorflow 2.14 MCTQ v1.3.0
on:
workflow_dispatch: # Allow manual triggers
schedule:
- cron: 0 0 * * *

jobs:
run-comp-tensorflow-2_14-v1_3:
uses: ./.github/workflows/compatibility_keras_tests.yml
with:
save_version: "v1.3.0"
python_version: "3.10"
tf_version: "2.14.*"
2 changes: 1 addition & 1 deletion .github/workflows/run_tests_suite_pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
rm -rf mct_quantizers
- name: Install TF
run: |
pip install tensorflow==2.13.*
pip install tensorflow==2.14.*
- name: Run TF Tests
run: |
python -m unittest discover tests/keras_tests --verbose
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/run_tests_tf214.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Run Tests - Tensorflow 2.14
on:
workflow_dispatch: # Allow manual triggers
schedule:
- cron: 0 0 * * *

jobs:
run-tensorflow-2_14:
uses: ./.github/workflows/run_keras_tests.yml
with:
tf-version: "2.14.*"

0 comments on commit 8cc9a52

Please sign in to comment.