diff options
| author | Skye Deving <76892045+skyedeving@users.noreply.github.com> | 2021-01-27 02:41:12 -0600 |
|---|---|---|
| committer | Skye Deving <76892045+skyedeving@users.noreply.github.com> | 2021-01-28 11:05:42 -0600 |
| commit | ea9284d18dcac42ba2e6600ce742370d7ebf0940 (patch) | |
| tree | 02ac63a892069498a3cf910638c615a803064d87 /.github | |
| parent | 46d6b6719b7e2fc30fd49a892ae4f7cec2256fc7 (diff) | |
Fix paths and remove env
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 234d1568..6ce3a470 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,19 +30,17 @@ jobs: # discord-rpc curl -L https://github.com/discordapp/discord-rpc/releases/download/v3.4.0/discord-rpc-win.zip -o discord_rpc_win.zip unzip discord_rpc_win.zip - cp discord-rpc/win32-static/lib/discord-rpc.lib ../lib + cp ./discord-rpc/win64-static/lib/discord-rpc.lib ./lib # BASS - mkdir bass - cd bass curl http://www.un4seen.com/files/bass24.zip -o bass.zip unzip bass.zip - cp ./c/bass.lib ../lib + cp ./c/bass.lib ./lib # BASS Opus curl http://www.un4seen.com/files/bassopus24.zip -o bassopus.zip unzip bassopus.zip - cp ./c/bassopus.lib ../lib + cp ./c/bassopus.lib ./lib - name: Cache Qt id: cache-qt @@ -62,9 +60,6 @@ jobs: - name: Configure CMake shell: bash - env: - CC: gcc-10 - CXX: g++-10 working-directory: ${{github.workspace}}/build run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE |
