Skip to content

Commit

Permalink
add liburing
Browse files Browse the repository at this point in the history
  • Loading branch information
mpwsh committed Oct 3, 2023
1 parent 9e71ca6 commit 973dd65
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
sudo apt-get install -y --no-install-recommends \
cmake \
clang \
liburing-dev \
g++ \
libsasl2-dev \
libssl-dev \
Expand Down Expand Up @@ -94,10 +95,15 @@ jobs:
with:
command: build
args: '--release'

- name: Rename binary
run: |
mv ./target/release/hub ./target/release/${{ env.REPOSITORY }}${{ matrix.suffix }}
- uses: actions/upload-artifact@master
with:
name: ${{ env.REPOSITORY }}-${{ matrix.target }}
path: ./target/${{ matrix.target}}/${{ env.REPOSITORY }}${{ matrix.suffix }}
path: ./target/release/${{ env.REPOSITORY }}${{ matrix.suffix }}
release:
needs:
- build
Expand Down

0 comments on commit 973dd65

Please sign in to comment.