Miscellaneous changes to CI scripts
This commit is contained in:
parent
5a023e3e07
commit
593e9d7353
@ -101,9 +101,7 @@ const specialActions = changesFile ?
|
|||||||
// higher-level directories will succeed.
|
// higher-level directories will succeed.
|
||||||
.concat(Array.from(dirsDeleted.values())
|
.concat(Array.from(dirsDeleted.values())
|
||||||
.sort((a, b) => b.split("/").length - a.split("/").length)
|
.sort((a, b) => b.split("/").length - a.split("/").length)
|
||||||
.map(dir => {
|
.map(dir => ({ action: "deleteDir", target: dir })))
|
||||||
return { action: "deleteDir", target: dir };
|
|
||||||
}))
|
|
||||||
: [];
|
: [];
|
||||||
|
|
||||||
const urlBase = "https://s3.wasabisys.com/ao-downloads/";
|
const urlBase = "https://s3.wasabisys.com/ao-downloads/";
|
||||||
|
@ -3,6 +3,11 @@ FROM oldmud0/mxe-qt:5.13.0-win32-static-posix
|
|||||||
|
|
||||||
ENV TARGET_SPEC i686-w64-mingw32.static.posix
|
ENV TARGET_SPEC i686-w64-mingw32.static.posix
|
||||||
|
|
||||||
|
# Build libarchive statically
|
||||||
|
WORKDIR /opt/mxe
|
||||||
|
RUN make -j4 MXE_TARGETS=${TARGET_SPEC} libarchive bzip2 xz lz4 zstd nettle expat libxml2
|
||||||
|
WORKDIR /
|
||||||
|
|
||||||
# Build Discord RPC statically
|
# Build Discord RPC statically
|
||||||
RUN git clone https://github.com/discordapp/discord-rpc
|
RUN git clone https://github.com/discordapp/discord-rpc
|
||||||
WORKDIR discord-rpc/build
|
WORKDIR discord-rpc/build
|
||||||
|
Loading…
Reference in New Issue
Block a user