We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
local-cache
name: test on: [ push, pull_request ] jobs: test_ubuntu: name: Run Make Test on Ubuntu 🧪 runs-on: ubuntu-latest steps: - name: Checkout Code uses: actions/checkout@v4 - name: Setup Build Tools run: | sudo apt-get update sudo apt-get install -y gcc make - name: Setup NDK uses: nttld/setup-ndk@v1 id: setup-ndk with: ndk-version: r26d local-cache: true - name: Setup Go Environment uses: actions/setup-go@master - name: Test Build env: NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }} BUILD_MACHINE: linux run: | echo NDK path is $NDK_HOME ls -hl $NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin/clang ls -hl /opt/hostedtoolcache $NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android23-clang --version make -e
It is clear that the cache restored successfully.
But the symlink to /opt/hostedtoolcache is broken.
/opt/hostedtoolcache
The text was updated successfully, but these errors were encountered:
Might be related to #518
Sorry, something went wrong.
So I have to drop local-cache option in current usage 😂.
No branches or pull requests
My YAML
The output
It is clear that the cache restored successfully.
But the symlink to
/opt/hostedtoolcache
is broken.The text was updated successfully, but these errors were encountered: