exec.sh 459 B

1234567891011
  1. #!/bin/bash -ex
  2. # SPDX-FileCopyrightText: 2021 yuzu Emulator Project
  3. # SPDX-License-Identifier: GPL-2.0-or-later
  4. mkdir -p "ccache" || true
  5. chmod a+x ./.ci/scripts/clang/docker.sh
  6. # the UID for the container yuzu user is 1027
  7. sudo chown -R 1027 ./
  8. docker run -e ENABLE_COMPATIBILITY_REPORTING -e CCACHE_DIR=/yuzu/ccache -v "$(pwd):/yuzu" -w /yuzu yuzuemu/build-environments:linux-fresh /bin/bash /yuzu/.ci/scripts/clang/docker.sh "$1"
  9. sudo chown -R $UID ./