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
14 changes: 11 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,20 @@ jobs:
suffix: .exe

steps:
- name: install aws-lc-rs build pre-reqs for windows
if: ${{ matrix.target == 'x86_64-pc-windows-msvc' }}
- name: Install build pre-reqs (Windows)
if: ${{ runner.os == 'Windows' }}
run: |
choco install nasm -y
choco install nasm cmake -y
echo "C:\Program Files\NASM" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append

- name: Install cmake (macOS)
if: ${{ runner.os == 'macOS' }}
run: brew install cmake

- name: Install cmake (Linux)
if: ${{ runner.os == 'Linux' }}
run: sudo apt-get update && sudo apt-get install -y cmake

- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@stable
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
toolchain: ${{ matrix.rust }}
components: rustfmt, clippy

- name: Install cmake
run: sudo apt-get update && sudo apt-get install -y cmake

- name: Cache dependencies
uses: actions/cache@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "avocado-cli"
version = "0.33.0"
version = "0.34.0"
edition = "2021"
description = "Command line interface for Avocado."
authors = ["Avocado"]
Expand Down
Loading