diff options
Diffstat (limited to '.ci/scripts/windows')
| -rwxr-xr-x | .ci/scripts/windows/docker.sh | 3 | ||||
| -rw-r--r-- | .ci/scripts/windows/exec.sh | 3 | ||||
| -rw-r--r-- | .ci/scripts/windows/scan_dll.py | 3 | ||||
| -rw-r--r-- | .ci/scripts/windows/upload.ps1 | 5 | ||||
| -rwxr-xr-x | .ci/scripts/windows/upload.sh | 3 |
5 files changed, 16 insertions, 1 deletions
diff --git a/.ci/scripts/windows/docker.sh b/.ci/scripts/windows/docker.sh index 9f34530d6..790ba8218 100755 --- a/.ci/scripts/windows/docker.sh +++ b/.ci/scripts/windows/docker.sh | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | #!/bin/bash -ex | 1 | #!/bin/bash -ex |
| 2 | 2 | ||
| 3 | # SPDX-FileCopyrightText: 2019 yuzu Emulator Project | ||
| 4 | # SPDX-License-Identifier: GPL-2.0-or-later | ||
| 5 | |||
| 3 | set -e | 6 | set -e |
| 4 | 7 | ||
| 5 | #cd /yuzu | 8 | #cd /yuzu |
diff --git a/.ci/scripts/windows/exec.sh b/.ci/scripts/windows/exec.sh index bf5c5fb63..ca74eeba5 100644 --- a/.ci/scripts/windows/exec.sh +++ b/.ci/scripts/windows/exec.sh | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | #!/bin/bash -ex | 1 | #!/bin/bash -ex |
| 2 | 2 | ||
| 3 | # SPDX-FileCopyrightText: 2019 yuzu Emulator Project | ||
| 4 | # SPDX-License-Identifier: GPL-2.0-or-later | ||
| 5 | |||
| 3 | mkdir -p "ccache" || true | 6 | mkdir -p "ccache" || true |
| 4 | chmod a+x ./.ci/scripts/windows/docker.sh | 7 | chmod a+x ./.ci/scripts/windows/docker.sh |
| 5 | # the UID for the container yuzu user is 1027 | 8 | # the UID for the container yuzu user is 1027 |
diff --git a/.ci/scripts/windows/scan_dll.py b/.ci/scripts/windows/scan_dll.py index 163183f2e..f374e0d78 100644 --- a/.ci/scripts/windows/scan_dll.py +++ b/.ci/scripts/windows/scan_dll.py | |||
| @@ -1,3 +1,6 @@ | |||
| 1 | # SPDX-FileCopyrightText: 2019 yuzu Emulator Project | ||
| 2 | # SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 1 | import pefile | 4 | import pefile |
| 2 | import sys | 5 | import sys |
| 3 | import re | 6 | import re |
diff --git a/.ci/scripts/windows/upload.ps1 b/.ci/scripts/windows/upload.ps1 index ac2a38f1d..3da242bc7 100644 --- a/.ci/scripts/windows/upload.ps1 +++ b/.ci/scripts/windows/upload.ps1 | |||
| @@ -1,3 +1,6 @@ | |||
| 1 | # SPDX-FileCopyrightText: 2019 yuzu Emulator Project | ||
| 2 | # SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 1 | param($BUILD_NAME) | 4 | param($BUILD_NAME) |
| 2 | 5 | ||
| 3 | $GITDATE = $(git show -s --date=short --format='%ad') -replace "-", "" | 6 | $GITDATE = $(git show -s --date=short --format='%ad') -replace "-", "" |
| @@ -40,7 +43,7 @@ mkdir $MSVC_SOURCE | |||
| 40 | mkdir "artifacts" | 43 | mkdir "artifacts" |
| 41 | 44 | ||
| 42 | # Build a tar.xz for the source of the release | 45 | # Build a tar.xz for the source of the release |
| 43 | Copy-Item .\license.txt -Destination $MSVC_SOURCE | 46 | Copy-Item .\LICENSE.txt -Destination $MSVC_SOURCE |
| 44 | Copy-Item .\README.md -Destination $MSVC_SOURCE | 47 | Copy-Item .\README.md -Destination $MSVC_SOURCE |
| 45 | Copy-Item .\CMakeLists.txt -Destination $MSVC_SOURCE | 48 | Copy-Item .\CMakeLists.txt -Destination $MSVC_SOURCE |
| 46 | Copy-Item .\src -Recurse -Destination $MSVC_SOURCE | 49 | Copy-Item .\src -Recurse -Destination $MSVC_SOURCE |
diff --git a/.ci/scripts/windows/upload.sh b/.ci/scripts/windows/upload.sh index 3c6a74218..4aa5be544 100755 --- a/.ci/scripts/windows/upload.sh +++ b/.ci/scripts/windows/upload.sh | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | #!/bin/bash -ex | 1 | #!/bin/bash -ex |
| 2 | 2 | ||
| 3 | # SPDX-FileCopyrightText: 2019 yuzu Emulator Project | ||
| 4 | # SPDX-License-Identifier: GPL-2.0-or-later | ||
| 5 | |||
| 3 | . .ci/scripts/common/pre-upload.sh | 6 | . .ci/scripts/common/pre-upload.sh |
| 4 | 7 | ||
| 5 | REV_NAME="yuzu-windows-mingw-${GITDATE}-${GITREV}" | 8 | REV_NAME="yuzu-windows-mingw-${GITDATE}-${GITREV}" |