summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar liushuyu2022-07-04 21:21:36 -0600
committerGravatar liushuyu2022-07-05 00:50:46 -0600
commit1524ff87d26e95f3fa722ca23eb30895e9b6f793 (patch)
tree3befd2b607728e067c6b1ae315d9ca97ca394cf8
parentCI: lint scripts (diff)
downloadyuzu-1524ff87d26e95f3fa722ca23eb30895e9b6f793.tar.gz
yuzu-1524ff87d26e95f3fa722ca23eb30895e9b6f793.tar.xz
yuzu-1524ff87d26e95f3fa722ca23eb30895e9b6f793.zip
CI: unbreak ADO after GHA changes
-rw-r--r--.ci/scripts/clang/exec.sh2
-rw-r--r--.ci/scripts/format/exec.sh2
-rw-r--r--.ci/scripts/linux/exec.sh2
-rwxr-xr-x.ci/scripts/windows/docker.sh4
-rw-r--r--.ci/scripts/windows/exec.sh2
5 files changed, 6 insertions, 6 deletions
diff --git a/.ci/scripts/clang/exec.sh b/.ci/scripts/clang/exec.sh
index e56cd4325..a213aac27 100644
--- a/.ci/scripts/clang/exec.sh
+++ b/.ci/scripts/clang/exec.sh
@@ -4,5 +4,5 @@ mkdir -p "ccache" || true
4chmod a+x ./.ci/scripts/clang/docker.sh 4chmod a+x ./.ci/scripts/clang/docker.sh
5# the UID for the container yuzu user is 1027 5# the UID for the container yuzu user is 1027
6sudo chown -R 1027 ./ 6sudo chown -R 1027 ./
7docker run -e ENABLE_COMPATIBILITY_REPORTING -e CCACHE_DIR=/yuzu/ccache -v $(pwd):/yuzu yuzuemu/build-environments:linux-fresh /bin/bash /yuzu/.ci/scripts/clang/docker.sh $1 7docker 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"
8sudo chown -R $UID ./ 8sudo chown -R $UID ./
diff --git a/.ci/scripts/format/exec.sh b/.ci/scripts/format/exec.sh
index e9e9d2e17..c50e90d66 100644
--- a/.ci/scripts/format/exec.sh
+++ b/.ci/scripts/format/exec.sh
@@ -3,5 +3,5 @@
3chmod a+x ./.ci/scripts/format/docker.sh 3chmod a+x ./.ci/scripts/format/docker.sh
4# the UID for the container yuzu user is 1027 4# the UID for the container yuzu user is 1027
5sudo chown -R 1027 ./ 5sudo chown -R 1027 ./
6docker run -v $(pwd):/yuzu yuzuemu/build-environments:linux-clang-format /bin/bash -ex /yuzu/.ci/scripts/format/docker.sh 6docker run -v "$(pwd):/yuzu" -w /yuzu yuzuemu/build-environments:linux-clang-format /bin/bash -ex /yuzu/.ci/scripts/format/docker.sh
7sudo chown -R $UID ./ 7sudo chown -R $UID ./
diff --git a/.ci/scripts/linux/exec.sh b/.ci/scripts/linux/exec.sh
index a7deddeb3..fc4594d65 100644
--- a/.ci/scripts/linux/exec.sh
+++ b/.ci/scripts/linux/exec.sh
@@ -4,5 +4,5 @@ mkdir -p "ccache" || true
4chmod a+x ./.ci/scripts/linux/docker.sh 4chmod a+x ./.ci/scripts/linux/docker.sh
5# the UID for the container yuzu user is 1027 5# the UID for the container yuzu user is 1027
6sudo chown -R 1027 ./ 6sudo chown -R 1027 ./
7docker run -e ENABLE_COMPATIBILITY_REPORTING -e CCACHE_DIR=/yuzu/ccache -v $(pwd):/yuzu yuzuemu/build-environments:linux-fresh /bin/bash /yuzu/.ci/scripts/linux/docker.sh $1 7docker 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/linux/docker.sh "$1"
8sudo chown -R $UID ./ 8sudo chown -R $UID ./
diff --git a/.ci/scripts/windows/docker.sh b/.ci/scripts/windows/docker.sh
index dcdf39e3e..d670fe47d 100755
--- a/.ci/scripts/windows/docker.sh
+++ b/.ci/scripts/windows/docker.sh
@@ -7,8 +7,8 @@ set -e
7ccache -sv 7ccache -sv
8 8
9mkdir -p "$HOME/.conan/profiles" 9mkdir -p "$HOME/.conan/profiles"
10wget -nc "https://github.com/yuzu-emu/build-environments/raw/master/linux-mingw/default" -O "$HOME/.conan/profiles/default" 10wget -c "https://github.com/yuzu-emu/build-environments/raw/master/linux-mingw/default" -O "$HOME/.conan/profiles/default"
11wget -nc "https://github.com/yuzu-emu/build-environments/raw/master/linux-mingw/settings.yml" -O "$HOME/.conan/settings.yml" 11wget -c "https://github.com/yuzu-emu/build-environments/raw/master/linux-mingw/settings.yml" -O "$HOME/.conan/settings.yml"
12 12
13mkdir -p build && cd build 13mkdir -p build && cd build
14export LDFLAGS="-fuse-ld=lld" 14export LDFLAGS="-fuse-ld=lld"
diff --git a/.ci/scripts/windows/exec.sh b/.ci/scripts/windows/exec.sh
index f904544bd..bf5c5fb63 100644
--- a/.ci/scripts/windows/exec.sh
+++ b/.ci/scripts/windows/exec.sh
@@ -4,5 +4,5 @@ mkdir -p "ccache" || true
4chmod a+x ./.ci/scripts/windows/docker.sh 4chmod a+x ./.ci/scripts/windows/docker.sh
5# the UID for the container yuzu user is 1027 5# the UID for the container yuzu user is 1027
6sudo chown -R 1027 ./ 6sudo chown -R 1027 ./
7docker run -e CCACHE_DIR=/yuzu/ccache -v $(pwd):/yuzu yuzuemu/build-environments:linux-mingw /bin/bash -ex /yuzu/.ci/scripts/windows/docker.sh $1 7docker run -e CCACHE_DIR=/yuzu/ccache -v "$(pwd):/yuzu" -w /yuzu yuzuemu/build-environments:linux-mingw /bin/bash -ex /yuzu/.ci/scripts/windows/docker.sh "$1"
8sudo chown -R $UID ./ 8sudo chown -R $UID ./