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
2 changes: 2 additions & 0 deletions rust/.github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
run: nix develop -c make publish-binary RELEASE="${GITHUB_REF_NAME}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by GitHub Actions.

publish-crate:
name: Publish Crate
runs-on: ubuntu-24.04
Expand All @@ -37,6 +38,7 @@ jobs:
run: nix develop -c make publish-crate
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

publish-docker:
name: Publish Docker Image
runs-on: ubuntu-24.04
Expand Down
4 changes: 4 additions & 0 deletions rust/.github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
uses: cachix/install-nix-action@0b0e072294b088b73964f1d72dfdac0951439dbd # v31.8.4
- name: Check formatting.
run: nix develop -c make check-${{ matrix.language }}-formatting

linting:
name: Linting
runs-on: ${{ matrix.architecture }}
Expand All @@ -34,6 +35,7 @@ jobs:
uses: cachix/install-nix-action@0b0e072294b088b73964f1d72dfdac0951439dbd # v31.8.4
- name: Check linting.
run: nix develop -c make check-${{ matrix.language }}-linting

compile:
name: Compile
runs-on: ${{ matrix.architecture }}
Expand All @@ -47,6 +49,7 @@ jobs:
uses: cachix/install-nix-action@0b0e072294b088b73964f1d72dfdac0951439dbd # v31.8.4
- name: Compile.
run: nix develop -c make compile

unit-test:
name: Unit Test
runs-on: ${{ matrix.architecture }}
Expand All @@ -60,6 +63,7 @@ jobs:
uses: cachix/install-nix-action@0b0e072294b088b73964f1d72dfdac0951439dbd # v31.8.4
- name: Unit test.
run: nix develop -c make unit-test

end-to-end-test:
name: End to End Test
runs-on: ${{ matrix.architecture }}
Expand Down
3 changes: 2 additions & 1 deletion rust/.github/workflows/mirroring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ concurrency:
group: ${{ github.workflow }}

jobs:
GitLab:
gitlab:
name: GitLab
runs-on: ubuntu-24.04
steps:
- name: Checkout code.
Expand Down