diff --git a/.github/workflows/nvdaBuilder/action.yml b/.github/workflows/nvdaBuilder/action.yml deleted file mode 100644 index 6e10c23a524..00000000000 --- a/.github/workflows/nvdaBuilder/action.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: Build NVDA - -description: 'Builds NVDA' -inputs: - use-cache: - description: 'Indicates if cache action should be used: true or false' - default: 'true' - scons-source: - description: 'Indicates if scons source should be run: true or false' - default: 'true' -runs: - using: "composite" - - steps: - - name: Checkout repo - uses: actions/checkout@v4 - with: - submodules: true - - name: Install dependencies - uses: actions/setup-python@v5 - with: - python-version: '3.11' - architecture: x86 - - name: Cache dependencies - id: cacheDependencies - if: ${{ inputs.use-cache }} - uses: actions/cache@v4 - with: - path: | - .venv - source - key: ${{ runner.os }}-${{ hashFiles('requirements.txt', 'source/locale/**/*.po') }} - - name: Set version variables - run: powershell.exe ci/scripts/setBuildVersionVars.ps1 - shell: cmd - - name: Set scons args - run: powershell.exe ci/scripts/setSconsArgs.ps1 - shell: cmd - - name: Prepare source code - if: ${{ steps.cacheDependencies.outputs.cache-hit != 'true' && inputs.scons-source == 'true' }} - run: scons source %sconsArgs% --all-cores - shell: cmd - - name: Restore modified files - run: git restore . - shell: cmd - - name: Update submodules - run: git submodule update - shell: cmd - - name: Prepare for tests - run: powershell.exe ci/scripts/tests/beforeTests.ps1 - shell: cmd diff --git a/nvdaBuilder/action.yml b/nvdaBuilder/action.yml index 6e10c23a524..46c3fc6dce9 100644 --- a/nvdaBuilder/action.yml +++ b/nvdaBuilder/action.yml @@ -28,7 +28,7 @@ runs: with: path: | .venv - source + source/** key: ${{ runner.os }}-${{ hashFiles('requirements.txt', 'source/locale/**/*.po') }} - name: Set version variables run: powershell.exe ci/scripts/setBuildVersionVars.ps1