diff options
author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2023-07-29 13:40:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-29 13:40:45 +0200 |
commit | c0a17a2a834642d8b917b7152794b9542946e649 (patch) | |
tree | 2af14f681cd8728445fe063105eaa66b368aeb42 /.github/workflows | |
parent | 69fbe8046d858a1af98540417e75b8a0924cdd80 (diff) |
fix(CI): Windows build (#16843)
* fix(CI): Windows build
* Update windows_build.yml
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/windows_build.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 83a028e98f..957ede3d98 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -26,6 +26,8 @@ jobs: && (github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'run-build') || github.event.label.name == 'run-build') steps: - uses: actions/checkout@v2 + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2.9 - name: Configure OS shell: bash env: @@ -40,6 +42,10 @@ jobs: run: | export CTOOLS_BUILD=all ./acore.sh compiler build + - name: Copy dll files + shell: bash + run: | + cp "/c/Program Files/OpenSSL/bin/legacy.dll" "env/dist" - name: Dry run authserver shell: bash run: | |