Skip to content

Commit

Permalink
Init horustctl and command crates
Browse files Browse the repository at this point in the history
  • Loading branch information
FedericoPonzi committed Nov 1, 2024
1 parent 68794b6 commit 20fe717
Show file tree
Hide file tree
Showing 18 changed files with 2,006 additions and 201 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: build
args: ${{ matrix.features }}
args: --all

- name: Create /var/run/horust directory
run: sudo mkdir -p /var/run/horust && sudo chmod 777 /var/run/horust
- name: Test
Expand All @@ -73,13 +74,6 @@ jobs:
command: test
args: ${{ matrix.features }}

- name: Test all benches
if: matrix.benches
uses: actions-rs/cargo@v1
with:
command: test
args: --benches ${{ matrix.features }}

# Publish latest and releases (e.g. tags with semver) on dockerhub.
docker-push-release-latest:
needs: [ test ]
Expand Down Expand Up @@ -132,7 +126,7 @@ jobs:
with:
use-cross: true
command: build
args: --release --target ${{ matrix.target }}
args: --release --all --target ${{ matrix.target }}

- name: Package
shell: bash
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/target
**/*.rs.bk
.idea
.idea
**/target
Loading

0 comments on commit 20fe717

Please sign in to comment.