Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,12 @@ jobs:
if: ${{ matrix.enabled && matrix.target == 'aarch64-unknown-linux-gnu' }}
run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu

- name: Install system dependencies
if: ${{ matrix.enabled }}
run: |
sudo apt-get update
sudo apt-get install -y pkg-config libkrb5-dev

Comment thread
swayechateau marked this conversation as resolved.
- if: ${{ matrix.enabled }}
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -311,6 +317,12 @@ jobs:
- name: Install cross-linker for aarch64 Linux
if: ${{ matrix.enabled && matrix.target == 'aarch64-unknown-linux-gnu' }}
run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu

- name: Install system dependencies
if: ${{ matrix.enabled }}
run: |
sudo apt-get update
sudo apt-get install -y pkg-config libkrb5-dev
Comment thread
swayechateau marked this conversation as resolved.

- if: ${{ matrix.enabled }}
uses: actions/download-artifact@v4
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/dependabot.yml

This file was deleted.

1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
name: Build CLI
uses: ./.github/workflows/build.yml
with:
work_dir: "./workspace"
binary_tag: ${{ github.event.release.tag_name || inputs.binary_tag }}
build_linux_x86_64: true
build_linux_aarch64: true
Expand Down
Loading