Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump houseabsolute/actions-rust-cross from 0 to 1 #1434

Closed
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: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
if: contains(matrix.platform.name, 'musl')

- name: Build iggy-server release binary
uses: houseabsolute/actions-rust-cross@v0
uses: houseabsolute/actions-rust-cross@v1
with:
command: "build"
target: ${{ matrix.platform.target }}
Expand All @@ -117,7 +117,7 @@ jobs:
if: ${{ matrix.toolchain }} == 'stable'

- name: Build iggy-cli release binary
uses: houseabsolute/actions-rust-cross@v0
uses: houseabsolute/actions-rust-cross@v1
with:
command: "build"
target: ${{ matrix.platform.target }}
Expand Down Expand Up @@ -252,15 +252,15 @@ jobs:
run: sudo apt-get update --yes && sudo apt-get install --yes musl-tools

- name: Build iggy-server release binary for Linux-x86_64
uses: houseabsolute/actions-rust-cross@v0
uses: houseabsolute/actions-rust-cross@v1
with:
command: "build"
target: x86_64-unknown-linux-musl
toolchain: stable
args: "--verbose --release --bin iggy-server"

- name: Build iggy-cli release binary for Linux-x86_64
uses: houseabsolute/actions-rust-cross@v0
uses: houseabsolute/actions-rust-cross@v1
with:
command: "build"
target: x86_64-unknown-linux-musl
Expand All @@ -274,15 +274,15 @@ jobs:
cp target/x86_64-unknown-linux-musl/release/iggy all_artifacts/Linux-x86_64/

- name: Build iggy-server release binary for Linux-aarch64
uses: houseabsolute/actions-rust-cross@v0
uses: houseabsolute/actions-rust-cross@v1
with:
command: "build"
target: aarch64-unknown-linux-musl
toolchain: stable
args: "--verbose --release --bin iggy-server"

- name: Build iggy-cli release binary for Linux-aarch64
uses: houseabsolute/actions-rust-cross@v0
uses: houseabsolute/actions-rust-cross@v1
with:
command: "build"
target: aarch64-unknown-linux-musl
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ jobs:
if: ${{ matrix.platform.cross }}

- name: Build binary
uses: houseabsolute/actions-rust-cross@v0
uses: houseabsolute/actions-rust-cross@v1
with:
command: "build"
target: ${{ matrix.platform.target }}
toolchain: ${{ matrix.toolchain }}
args: " --features ci-qemu --verbose ${{ matrix.platform.profile == 'release' && '--release' || '' }}"

- name: Run tests
uses: houseabsolute/actions-rust-cross@v0
uses: houseabsolute/actions-rust-cross@v1
with:
command: "test"
target: ${{ matrix.platform.target }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@ jobs:
if: ${{ matrix.platform.cross }}

- name: Build binary
uses: houseabsolute/actions-rust-cross@v0
uses: houseabsolute/actions-rust-cross@v1
with:
command: "build"
target: ${{ matrix.platform.target }}
toolchain: ${{ matrix.toolchain }}
args: " --features ci-qemu --verbose ${{ matrix.platform.profile == 'release' && '--release' || '' }}"

- name: Run tests
uses: houseabsolute/actions-rust-cross@v0
uses: houseabsolute/actions-rust-cross@v1
with:
command: "test"
target: ${{ matrix.platform.target }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
if: ${{ matrix.platform.os == 'ubuntu-latest' }}

- name: Build binary (Linux)
uses: houseabsolute/actions-rust-cross@v0
uses: houseabsolute/actions-rust-cross@v1
with:
command: "build"
target: ${{ matrix.platform.target }}
Expand All @@ -84,7 +84,7 @@ jobs:
if: ${{ matrix.platform.os == 'ubuntu-latest' }}

- name: Build binary (Windows)
uses: houseabsolute/actions-rust-cross@v0
uses: houseabsolute/actions-rust-cross@v1
env:
AWS_LC_SYS_NO_ASM: 1
with:
Expand All @@ -95,7 +95,7 @@ jobs:
if: ${{ matrix.platform.os == 'windows-latest' }}

- name: Run tests
uses: houseabsolute/actions-rust-cross@v0
uses: houseabsolute/actions-rust-cross@v1
with:
command: "test"
target: ${{ matrix.platform.target }}
Expand Down