diff --git a/.github/workflows/build-ubuntu.yml b/.github/workflows/build-ubuntu.yml index 322a5884b6a..062ee4b3c22 100644 --- a/.github/workflows/build-ubuntu.yml +++ b/.github/workflows/build-ubuntu.yml @@ -46,10 +46,6 @@ jobs: - name: Checkout repository uses: actions/checkout@main - - name: Install Linux Dependencies - run: > - sudo apt-get update && sudo apt-get install ccache docker-compose linux-headers-$(uname -r) - - name: Switch to gcc-11 if: matrix.os == 'ubuntu-20.04' run: | @@ -65,19 +61,6 @@ jobs: restore-keys: | ccache-${{ matrix.os }} - - name: Restore artifacts and install vcpkg - id: vcpkg-step - run: | - vcpkgCommitId=$(grep '.builtin-baseline' vcpkg.json | awk -F: '{print $2}' | tr -d '," ') - echo "vcpkg commit ID: $vcpkgCommitId" - echo "VCPKG_GIT_COMMIT_ID=$vcpkgCommitId" >> $GITHUB_ENV - - - name: Get vcpkg commit id from vcpkg.json - uses: lukka/run-vcpkg@main - with: - vcpkgGitURL: "https://github.com/microsoft/vcpkg.git" - vcpkgGitCommitId: ${{ env.VCPKG_GIT_COMMIT_ID }} - - name: Get latest CMake and ninja uses: lukka/get-cmake@main