Skip to content

Commit

Permalink
chore: skipping capnp won't work, let's install it
Browse files Browse the repository at this point in the history
  • Loading branch information
cmars committed Feb 25, 2024
1 parent 2482fa5 commit b5779d3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BUILD_MANIFEST_NAME: target/distrib/${{ join(matrix.targets, '-') }}-dist-manifest.json
DOCS_RS: skip-veilid-capnp-hack
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -122,6 +121,15 @@ jobs:
- name: Install dependencies
run: |
${{ matrix.packages_install }}
- name: Install capnproto
run: |
cd /tmp
curl -O https://capnproto.org/capnproto-c++-1.0.2.tar.gz
tar zxf capnproto-c++-1.0.2.tar.gz
cd capnproto-c++-1.0.2
./configure
make -j6 check
make install
- name: Build artifacts
run: |
# Actually do builds and make zips and whatnot
Expand Down

0 comments on commit b5779d3

Please sign in to comment.