File tree Expand file tree Collapse file tree 1 file changed +12
-7
lines changed
Expand file tree Collapse file tree 1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -41,14 +41,19 @@ jobs:
4141 toolchain : stable
4242 targets : ${{ matrix.target }}
4343
44- - name : Setup dependencies (Ubuntu)
45- if : matrix.os == 'ubuntu-latest'
46- run : |
47- sudo apt-get -qq update
48- sudo apt-get -qq install musl-dev musl-tools pkg-config make
44+ # - name: Setup dependencies (Ubuntu)
45+ # if: matrix.os == 'ubuntu-latest'
46+ # run: |
47+ # sudo apt-get -qq update
48+ # sudo apt-get -qq install musl-dev musl-tools pkg-config make
4949
50- - name : Run build
51- run : cargo build --release --locked --target ${{ matrix.target }}
50+ - name : Build binary
51+ uses : houseabsolute/actions-rust-cross@v0
52+ with :
53+ command : build
54+ target : ${{ matrix.target }}
55+ args : " --locked --release"
56+ strip : true
5257
5358 - name : Run the binary
5459 run : ./target/${{ matrix.target }}/release/gitrack -p /tmp
You can’t perform that action at this time.
0 commit comments