summaryrefslogtreecommitdiff
path: root/.ci/scripts/windows
diff options
context:
space:
mode:
Diffstat (limited to '.ci/scripts/windows')
-rwxr-xr-x.ci/scripts/windows/docker.sh3
-rw-r--r--.ci/scripts/windows/exec.sh3
-rw-r--r--.ci/scripts/windows/scan_dll.py3
-rw-r--r--.ci/scripts/windows/upload.ps15
-rwxr-xr-x.ci/scripts/windows/upload.sh3
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
3set -e 6set -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
3mkdir -p "ccache" || true 6mkdir -p "ccache" || true
4chmod a+x ./.ci/scripts/windows/docker.sh 7chmod 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
1import pefile 4import pefile
2import sys 5import sys
3import re 6import 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
1param($BUILD_NAME) 4param($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
40mkdir "artifacts" 43mkdir "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
43Copy-Item .\license.txt -Destination $MSVC_SOURCE 46Copy-Item .\LICENSE.txt -Destination $MSVC_SOURCE
44Copy-Item .\README.md -Destination $MSVC_SOURCE 47Copy-Item .\README.md -Destination $MSVC_SOURCE
45Copy-Item .\CMakeLists.txt -Destination $MSVC_SOURCE 48Copy-Item .\CMakeLists.txt -Destination $MSVC_SOURCE
46Copy-Item .\src -Recurse -Destination $MSVC_SOURCE 49Copy-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
5REV_NAME="yuzu-windows-mingw-${GITDATE}-${GITREV}" 8REV_NAME="yuzu-windows-mingw-${GITDATE}-${GITREV}"