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
6 changes: 3 additions & 3 deletions .github/workflows/build-release-binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
platform:
- { os: ubuntu-latest, target: x86_64-unknown-linux-musl }
- { os: ubicloud-standard-2, target: x86_64-unknown-linux-musl }
- { os: macos-latest, target: x86_64-apple-darwin }

runs-on: ${{ matrix.platform.os }}
Expand All @@ -37,11 +37,11 @@ jobs:
run: rustup target add x86_64-apple-darwin

- name: Add musl target
if: matrix.platform.os == 'ubuntu-latest'
if: matrix.platform.os == 'ubicloud-standard-2'
run: rustup target add x86_64-unknown-linux-musl

- name: Install deps for musl build
if: matrix.platform.os == 'ubuntu-latest'
if: matrix.platform.os == 'ubicloud-standard-2'
run: |
sudo apt-get update
sudo apt-get install -y musl-tools clang build-essential curl llvm-dev libclang-dev linux-headers-generic libsnappy-dev liblz4-dev libzstd-dev libgflags-dev zlib1g-dev libbz2-dev
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:

jobs:
doc:
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
steps:
- uses: actions/checkout@v4
- name: Install Rust stable
Expand All @@ -35,7 +35,7 @@ jobs:
run: RUSTFLAGS="-D warnings" cargo doc --locked

fmt:
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
steps:
- uses: actions/checkout@v4
- name: Install Rust ${{ env.TOOLCHAIN_FMT }}
Expand All @@ -51,7 +51,7 @@ jobs:
run: cargo +${{ env.TOOLCHAIN_FMT }} fmt --all -- --check

clippy:
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2
steps:
- uses: actions/checkout@v4
- name: Install Rust stable
Expand All @@ -77,7 +77,7 @@ jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
os: [ubicloud-standard-2]
toolchain: [stable]
runs-on: ${{ matrix.os }}
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
docs:
runs-on: ubuntu-latest
runs-on: ubicloud-standard-2

steps:
- name: Checkout code
Expand Down
Loading