Skip to content
Open
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
33 changes: 16 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Extract release version
id: extract_release_version
run: |
release_version="$(echo '${{ github.ref }}' | sed 's,^.*/\([^/]*\)$,\1,; s,^v,,' )"
echo Release version: $release_version
echo "::set-output name=release_version::$release_version"
echo "release_version=$release_version" >> $GITHUB_OUTPUT
- name: Extract release body from CHANGELOG.md
id: extract_release_body
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
Expand Down Expand Up @@ -75,14 +75,14 @@ jobs:
host: x86_64-unknown-linux-musl
cargo: cross
os: ubuntu-latest
- target: x86_64-apple-darwin
host: x86_64-apple-darwin
cargo: cargo
os: macos-latest
- target: aarch64-apple-darwin
host: x86_64-apple-darwin
cargo: cargo
os: macos-latest
# - target: x86_64-apple-darwin
# host: x86_64-apple-darwin
# cargo: cargo
# os: macos-latest
# - target: aarch64-apple-darwin
# host: x86_64-apple-darwin
# cargo: cargo
# os: macos-latest

runs-on: ${{ matrix.os }}

Expand All @@ -92,9 +92,8 @@ jobs:
if: runner.os == 'macOS'
run: |
brew install automake
- uses: abelfodil/protoc-action@v1
with:
protoc-version: "3.0.0"
- name: Install protoc
uses: arduino/setup-protoc@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
Expand All @@ -105,20 +104,20 @@ jobs:
components: rustfmt, clippy
target: ${{ matrix.target }}
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Just
run: |
version=1.13.0
version=1.42.4
basename=just-$version-${{ matrix.host }}
curl -fLO https://github.com/casey/just/releases/download/$version/$basename.tar.gz
tar xf $basename.tar.gz just
mv just /usr/local/bin/
rm -rf $basename.tar.gz
- name: Install cargo-deny
run: |
version=0.14.20
version=0.18.4
basename=cargo-deny-$version-${{ matrix.host }}
curl -fLO https://github.com/EmbarkStudios/cargo-deny/releases/download/$version/$basename.tar.gz
tar xf $basename.tar.gz
Expand Down Expand Up @@ -151,7 +150,7 @@ jobs:
run: |
release_file=geocode-csv_${{ needs.create_release.outputs.release_version }}_${{ matrix.target }}.zip
zip -j $release_file target/${{ matrix.target }}/release/geocode-csv
echo "::set-output name=release_file::$release_file"
echo "release_file=$release_file" >> $GITHUB_OUTPUT
- name: Upload Release Asset
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
uses: actions/upload-release-asset@v1
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.4.1] - 2025-09-02

### Added

- Added `--bigtable-random-eviction-[age,rate]`

## [1.4.0] - 2024-04-26

### Added
Expand Down
Loading
Loading