Skip to content

Commit

Permalink
ci(release): try fix
Browse files Browse the repository at this point in the history
  • Loading branch information
255doesnotexist committed Sep 25, 2024
1 parent d926bb1 commit 76771db
Show file tree
Hide file tree
Showing 3 changed files with 446 additions and 5 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@ jobs:
run: cargo install cross

- name: Build for ${{ matrix.target }}
run: cross build --release --target ${{ matrix.target }}
run: |
if [[ "${{ matrix.target }}" == "mips64-unknown-linux-gnuabi64" ]]; then
cross build --release --target ${{ matrix.target }} -- -Z build-std=core,alloc,proc_macro
else
cross build --release --target ${{ matrix.target }}
fi
- name: Get current date
id: date
Expand Down
8 changes: 4 additions & 4 deletions bianbu/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ skip_packages = []

[connection]
method = "ssh"
ip = "{BIANBU_IP}"
port = {BIANBU_PORT}
username = "{BIANBU_USERNAME}"
password = "{BIANBU_PASSWORD}"
ip = "frp-act.top"
port = 37860
username = "root"
password = "bianbu"
Loading

0 comments on commit 76771db

Please sign in to comment.