1. 13 Jun, 2024 1 commit
  2. 24 Mar, 2024 1 commit
  3. 27 Feb, 2024 1 commit
  4. 09 Feb, 2024 1 commit
  5. 12 Jan, 2024 1 commit
  6. 08 Jan, 2024 1 commit
  7. 07 Jan, 2024 1 commit
  8. 01 Dec, 2023 1 commit
  9. 09 Nov, 2023 2 commits
  10. 05 Oct, 2023 2 commits
    • moto's avatar
      Clean up build doc CI job (#3635) · e3b11a8e
      moto authored
      e3b11a8e
    • moto's avatar
      Add automated doc flow for release (#3634) · df44d300
      moto authored
      Currently, nightly documentation is pushed automatically for each commit and on daily basis.
      
      For release, automating it is tricky because we need to ensure that the version number is properly updated.
      (removing alpha suffix at branch cut time and updating minor version at minor release)
      
      For this reason, in release/2.1 we used manual-trigger to build and deploy doc for release.
      This commit back port it to main.
      
      For each release, once the version number is updated, running build_doc job from GHA will deploy the documentation automatically.
      df44d300
  11. 26 Sep, 2023 1 commit
  12. 19 Sep, 2023 1 commit
  13. 05 Sep, 2023 1 commit
  14. 02 Sep, 2023 1 commit
  15. 29 Aug, 2023 1 commit
  16. 21 Aug, 2023 1 commit
  17. 20 Aug, 2023 1 commit
    • moto's avatar
      Fix style check CI job (#3564) · a5da0a28
      moto authored
      Summary:
      It seems that the default Python version was updated to 3.11.
      libcst does not have binary release for 3.11, so the CI attempts to
      build from source but it fails because building libcst requires Rust
      compiler.
      
      This commit fix the Python version of style check job to 3.10 so that
      the issue with Rust compiler is avoided.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/3564
      
      Reviewed By: huangruizhe
      
      Differential Revision: D48499560
      
      Pulled By: mthrok
      
      fbshipit-source-id: 53ab77268d8143f4946d92e8cd1f96aea55e7b72
      a5da0a28
  18. 15 Aug, 2023 1 commit
  19. 14 Aug, 2023 2 commits
  20. 10 Aug, 2023 1 commit
  21. 27 Jul, 2023 2 commits
    • moto's avatar
      Replace libsox with stub library (#3497) · 8588fba1
      moto authored
      Summary:
      This commit updates the way libsox is integrated to torchaudio
      
      1. We stop statically linking libsox, so torchaudio will not ship libsox.
      2. We link libsox dynamically. Users are expected to install libsox by themselves.
      3. We use stab library to build torchaudio.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/3497
      
      Differential Revision: D47803706
      
      Pulled By: mthrok
      
      fbshipit-source-id: 31b05495d81069186fa52d67beea360cc7e817a8
      8588fba1
    • moto's avatar
      Add switch to disable sox integration and ffmpeg integration at runtime (#3500) · 29903c5c
      moto authored
      Summary:
      Since libsox and ffmpeg extensions now depend on external libraries, their initialization processes might cause unrecoverable issue, such as segfault.
      
      This commit adds environment variable to disable them so that importing torchaudio won't attempt to load these libraries.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/3500
      
      Differential Revision: D47808178
      
      Pulled By: mthrok
      
      fbshipit-source-id: 80c1c6b5f4bc608d4e209473702680db093c95ee
      29903c5c
  22. 26 Jul, 2023 1 commit
  23. 25 Jul, 2023 3 commits
  24. 15 Jul, 2023 1 commit
  25. 13 Jul, 2023 1 commit
    • Omkar Salpekar's avatar
      Linux CPU job should respect set Python version (#3477) · 86cb1e09
      Omkar Salpekar authored
      Summary:
      Reintroduce a conda environment within which we will do all deps installation, audio builds, and tests runs. This conda environment will use the python version set by the GHA job - previously this just defaulted to using the system 3.10 python which was default inside the container.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/3477
      
      Reviewed By: mthrok
      
      Differential Revision: D47414572
      
      Pulled By: osalpekar
      
      fbshipit-source-id: 80760f82c7726205b29812d576e498db2a7a80a0
      86cb1e09
  26. 12 Jul, 2023 1 commit
  27. 11 Jul, 2023 2 commits
  28. 10 Jul, 2023 1 commit
  29. 06 Jul, 2023 1 commit
  30. 05 Jul, 2023 1 commit
  31. 09 Jun, 2023 1 commit
  32. 08 Jun, 2023 2 commits
    • atalman's avatar
      [Nova] Add cache ffmpeg before building #2 (#3423) · 25e96f42
      atalman authored
      Summary:
      [Nova] Add cache ffmpeg before building - 2
      Follow up after https://github.com/pytorch/audio/pull/3417, need to pass new arguments to test-infra workflows
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/3423
      
      Reviewed By: mthrok
      
      Differential Revision: D46559344
      
      Pulled By: atalman
      
      fbshipit-source-id: fa5cccc3bfb052688de4a05cc3b4f37fcbe3a6f5
      25e96f42
    • moto's avatar
      Clean up CI scripts (#3407) · f0803152
      moto authored
      Summary:
      - Moving the unit test scripts from .circleci to .github
      - Remove docker file for unit test base
      - Use the Conda from Docker image in Linux jobs.
      
      Remaining follow-up items
      
      - Reuse the unittest script in Linux GPU job like done in Linux CPU job.
      
      The unit test script needs to be fixed to be used for Linux GPU job
      in new GHA workflow. Keeping it as a separate follow-up work item.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/3407
      
      Differential Revision: D46498263
      
      Pulled By: mthrok
      
      fbshipit-source-id: d8256717a55bb4257151d819d3b2ebd453601eac
      f0803152