File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1717 - run : echo "The ${{ github.workspace }} is now ready to test your code on the runner."
1818 - run : ls ${{ github.workspace }}
1919 - run : sudo apt update
20- - run : sudo apt install libxcb-composite0-dev upx imagemagick libasound2-dev libpipewire-0.3-dev libx264-dev libx11-dev libxi-dev libxtst-dev libevdev-dev
20+ - run : sudo apt install libxcb-composite0-dev upx imagemagick libasound2-dev libpipewire-0.3-dev libx264-dev
2121
2222 - run : echo "start install Rust..."
2323 - name : Install Rust
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ android-debug:
2525 $(android-build-env ) $(run-env ) cargo apk run --lib -p ${app-name} --no-default-features --features=mobile,android
2626
2727desktop-build :
28- $(desktop-build-env ) cargo build --no-default-features --features=${desktop-features}
28+ $(desktop-build-env ) cargo build --bin ${app-name} -- no-default-features --features=${desktop-features}
2929
3030desktop-build-release :
31- $(desktop-build-env ) cargo build --release --no-default-features --features=${desktop-features}
31+ $(desktop-build-env ) cargo build --release --bin ${app-name} -- no-default-features --features=${desktop-features}
3232
3333desktop-debug :
3434 $(desktop-build-env ) $(run-env ) cargo run --bin ${app-name} --no-default-features --features=${desktop-features}
You can’t perform that action at this time.
0 commit comments