From a6228ab32fda9100879767f161b0e06a2ae51dfa Mon Sep 17 00:00:00 2001 From: Elad Cohen <78862769+elad-c@users.noreply.github.com> Date: Wed, 10 Apr 2024 17:14:27 +0300 Subject: [PATCH] Support TF 2.15 (#90) --- .github/workflows/run_comp_test_tf215_v13.yml | 13 +++++++++++++ .github/workflows/run_comp_test_tf215_v14.yml | 13 +++++++++++++ .../workflows/run_forward_comp_test_tf215_v14.yml | 13 +++++++++++++ .github/workflows/run_tests_tf215.yml | 11 +++++++++++ 4 files changed, 50 insertions(+) create mode 100644 .github/workflows/run_comp_test_tf215_v13.yml create mode 100644 .github/workflows/run_comp_test_tf215_v14.yml create mode 100644 .github/workflows/run_forward_comp_test_tf215_v14.yml create mode 100644 .github/workflows/run_tests_tf215.yml diff --git a/.github/workflows/run_comp_test_tf215_v13.yml b/.github/workflows/run_comp_test_tf215_v13.yml new file mode 100644 index 0000000..7471e29 --- /dev/null +++ b/.github/workflows/run_comp_test_tf215_v13.yml @@ -0,0 +1,13 @@ +name: Run Backward Compatibility Test - Tensorflow 2.15 MCTQ v1.3.0 +on: + workflow_dispatch: # Allow manual triggers + schedule: + - cron: 0 0 * * * + +jobs: + run-comp-tensorflow-2_15-v1_3: + uses: ./.github/workflows/compatibility_keras_tests.yml + with: + save_version: "v1.3.0" + python_version: "3.10" + tf_version: "2.15.*" diff --git a/.github/workflows/run_comp_test_tf215_v14.yml b/.github/workflows/run_comp_test_tf215_v14.yml new file mode 100644 index 0000000..7eb50dd --- /dev/null +++ b/.github/workflows/run_comp_test_tf215_v14.yml @@ -0,0 +1,13 @@ +name: Run Backward Compatibility Test - Tensorflow 2.15 MCTQ v1.4.0 +on: + workflow_dispatch: # Allow manual triggers + schedule: + - cron: 0 0 * * * + +jobs: + run-comp-tensorflow-2_15-v1_4: + uses: ./.github/workflows/compatibility_keras_tests.yml + with: + save_version: "v1.4.0" + python_version: "3.10" + tf_version: "2.15.*" diff --git a/.github/workflows/run_forward_comp_test_tf215_v14.yml b/.github/workflows/run_forward_comp_test_tf215_v14.yml new file mode 100644 index 0000000..785d102 --- /dev/null +++ b/.github/workflows/run_forward_comp_test_tf215_v14.yml @@ -0,0 +1,13 @@ +name: Run Forward Compatibility Test - Tensorflow 2.15 MCTQ v1.4.0 +on: + workflow_dispatch: # Allow manual triggers + schedule: + - cron: 0 0 * * * + +jobs: + run-forward-comp-tensorflow-2_15-v1_4: + uses: ./.github/workflows/forward_compatibility_keras_tests.yml + with: + load_version: "v1.4.0" + python_version: "3.10" + tf_version: "2.15.*" diff --git a/.github/workflows/run_tests_tf215.yml b/.github/workflows/run_tests_tf215.yml new file mode 100644 index 0000000..77c839c --- /dev/null +++ b/.github/workflows/run_tests_tf215.yml @@ -0,0 +1,11 @@ +name: Run Tests - Tensorflow 2.15 +on: + workflow_dispatch: # Allow manual triggers + schedule: + - cron: 0 0 * * * + +jobs: + run-tensorflow-2_15: + uses: ./.github/workflows/run_keras_tests.yml + with: + tf-version: "2.15.*"