fix: fix issues with tile
function in Ivy Functional API
#41699
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: intelligent-tests-pr | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, synchronize, reopened, review_requested] | |
permissions: | |
actions: read | |
jobs: | |
display_test_results: | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
needs: | |
- run_tests | |
steps: | |
- name: Download all test results | |
uses: actions/download-artifact@v3 | |
- name: Checkout Ivy 🛎 | |
uses: actions/checkout@v3 | |
with: | |
path: ivy | |
persist-credentials: false | |
submodules: "recursive" | |
fetch-depth: 1 | |
- name: Combined Test Results | |
run: | | |
find . -name "test_results_*.txt" -exec cat {} + > combined_test_results.txt | |
echo "Test results summary:" | |
cat combined_test_results.txt | |
- name: Combined Test Results (main) | |
run: | | |
find . -name "main_test_results_*.txt" -exec cat {} + > combined_main_test_results.txt | |
echo "Test results summary (main):" | |
cat combined_main_test_results.txt | |
- name: Compare Test Failures | |
run: | | |
find . -name "test_failures_*.txt" -exec cat {} + > ivy/combined_failures.txt | |
find . -name "main_test_failures_*.txt" -exec cat {} + > ivy/combined_main_failures.txt | |
pip install pymongo | |
cd ivy | |
python3 scripts/run_tests/compare_failures.py combined_failures.txt combined_main_failures.txt filtered_combined_failures.txt | |
- name: Display Test Failures | |
run: | | |
cd ivy | |
if [ -s filtered_combined_failures.txt ] | |
then | |
echo "The CI captured the following failing tests based on your changes:" | |
cat filtered_combined_failures.txt | |
else | |
echo "No test failures found based on your changes!" | |
fi | |
run_tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
branch: [ 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, 58, 59, 60, | |
61, 62, 63, 64, 65, 66, 67, 68, 69, 70, | |
71, 72, 73, 74, 75, 76, 77, 78, 79, 80, | |
81, 82, 83, 84, 85, 86, 87, 88, 89, 90, | |
91, 92, 93, 94, 95, 96, 97, 98, 99, 100, | |
101, 102, 103, 104, 105, 106, 107, 108, 109, 110, | |
111, 112, 113, 114, 115, 116, 117, 118, 119, 120, | |
121, 122, 123, 124, 125, 126, 127, 128 ] | |
steps: | |
- name: Checkout Ivy 🛎 | |
uses: actions/checkout@v3 | |
with: | |
path: ivy | |
persist-credentials: false | |
submodules: "recursive" | |
fetch-depth: 100 | |
- name: Checkout Ivy (main) 🛎 | |
uses: actions/checkout@v3 | |
with: | |
repository: "jacksondm33/ivy" | |
ref: "run_tests" | |
path: ivy_main | |
persist-credentials: false | |
submodules: "recursive" | |
fetch-depth: 100 | |
- name: Install ivy and fetch binaries | |
run: | | |
cd ivy | |
sudo pip3 install -e . | |
mkdir .ivy | |
touch .ivy/key.pem | |
echo -n ${{ secrets.USER_API_KEY }} > .ivy/key.pem | |
cd .. | |
- name: Get Job URL | |
uses: Tiryoh/gha-jobid-action@v0 | |
id: jobs | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
job_name: ${{ github.job }} | |
- name: Determine and Run Tests | |
id: tests | |
run: | | |
git clone -b master${{ matrix.branch }} https://github.com/unifyai/Mapping.git --depth 100 | |
pip install pydriller GitPython | |
python ivy/scripts/setup_tests/clone-mapping.py | |
cp Mapping/tests.pbz2 ivy/ | |
cd ivy | |
python scripts/determine_tests/determine_tests.py ${{ matrix.branch }} pr | |
set -o pipefail | |
python scripts/run_tests/run_tests_pr.py test_failures_${{ matrix.branch }}.txt | tee test_results_${{ matrix.branch }}.txt | |
cd .. | |
continue-on-error: true | |
- name: Install ivy and fetch binaries (main) | |
run: | | |
sudo pip3 uninstall -y ivy | |
cd ivy_main | |
sudo pip3 install -e . | |
mkdir .ivy | |
touch .ivy/key.pem | |
echo -n ${{ secrets.USER_API_KEY }} > .ivy/key.pem | |
cd .. | |
- name: Run Failed Tests (main) | |
id: tests_main | |
run: | | |
cp ivy/test_failures_${{ matrix.branch }}.txt ivy_main/tests_to_run | |
cd ivy_main | |
python scripts/run_tests/run_tests_pr.py main_test_failures_${{ matrix.branch }}.txt | tee main_test_results_${{ matrix.branch }}.txt | |
cd .. | |
continue-on-error: true | |
- name: Upload test results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test_results_${{ matrix.branch }} | |
path: ivy/test_results_${{ matrix.branch }}.txt | |
- name: Upload test results (main) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: main_test_results_${{ matrix.branch }} | |
path: ivy_main/main_test_results_${{ matrix.branch }}.txt | |
- name: Upload New Failures | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test_failures_${{ matrix.branch }} | |
path: ivy/test_failures_${{ matrix.branch }}.txt | |
- name: Upload New Failures (main) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: main_test_failures_${{ matrix.branch }} | |
path: ivy_main/main_test_failures_${{ matrix.branch }}.txt | |
- name: Check on failures | |
if: steps.tests.outcome != 'success' | |
run: exit 1 |