Cleanup job depend on release, added missing .cargo folder to fix cc error on workflow build
This commit is contained in:
2
.github/workflows/dispatcher.yml
vendored
2
.github/workflows/dispatcher.yml
vendored
@@ -84,7 +84,7 @@ jobs:
|
|||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
runs-on: self-hosted
|
runs-on: self-hosted
|
||||||
needs: [engine, server, ui, test-data-upload]
|
needs: [engine, server, ui, test-data-upload, release]
|
||||||
if: always()
|
if: always()
|
||||||
steps:
|
steps:
|
||||||
- name: Final cleanup
|
- name: Final cleanup
|
||||||
|
|||||||
4
engine/.cargo/config.toml
Normal file
4
engine/.cargo/config.toml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
[target.x86_64-unknown-linux-gnu]
|
||||||
|
linker = "x86_64-linux-gnu-gcc"
|
||||||
|
[target.x86_64-pc-windows-gnu]
|
||||||
|
linker = "x86_64-w64-mingw32-gcc"
|
||||||
4
server/.cargo/config.toml
Normal file
4
server/.cargo/config.toml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
[target.x86_64-unknown-linux-gnu]
|
||||||
|
linker = "x86_64-linux-gnu-gcc"
|
||||||
|
[target.x86_64-pc-windows-gnu]
|
||||||
|
linker = "x86_64-w64-mingw32-gcc"
|
||||||
4
ui/.cargo/config.toml
Normal file
4
ui/.cargo/config.toml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
[target.x86_64-unknown-linux-gnu]
|
||||||
|
linker = "x86_64-linux-gnu-gcc"
|
||||||
|
[target.x86_64-pc-windows-gnu]
|
||||||
|
linker = "x86_64-w64-mingw32-gcc"
|
||||||
Reference in New Issue
Block a user