Skip to content

Commit

Permalink
fix(ci): specify explicit cargo-make version
Browse files Browse the repository at this point in the history
  • Loading branch information
federico-terzi committed Oct 22, 2021
1 parent d9d7966 commit b20aa9c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN set -eux; \
cargo --version; \
rustc --version;

RUN mkdir espanso && cargo install --force cargo-make
RUN mkdir espanso && cargo install --force cargo-make --version 0.34.0

COPY . espanso

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
MACOSX_DEPLOYMENT_TARGET: "10.13"
- name: Install cargo-make
run: |
cargo install --force cargo-make
cargo install --force cargo-make --version 0.34.0
- name: Run test suite
run: cargo make test-binary
- name: Build
Expand All @@ -60,7 +60,7 @@ jobs:
cargo clippy -p espanso --features wayland -- -D warnings
- name: Install cargo-make
run: |
cargo install --force cargo-make
cargo install --force cargo-make --version 0.34.0
- name: Run test suite
run: cargo make test-binary --env NO_X11=true
- name: Build
Expand All @@ -74,7 +74,7 @@ jobs:
run: rustup update && rustup target add aarch64-apple-darwin
- name: Install cargo-make
run: |
cargo install --force cargo-make
cargo install --force cargo-make --version 0.34.0
- name: Build
run: |
cargo make build-macos-arm-binary
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
echo Using version ${{ needs.extract-version.outputs.espanso_version }}
- name: Install cargo-make
run: |
cargo install --force cargo-make
cargo install --force cargo-make --version 0.34.0
- name: Test
run: cargo make test-binary --profile release
- name: Build
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
echo Using version ${{ needs.extract-version.outputs.espanso_version }}
- name: Install cargo-make
run: |
cargo install --force cargo-make
cargo install --force cargo-make --version 0.34.0
- name: Test
run: cargo make test-binary --profile release
env:
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
run: rustup update && rustup target add aarch64-apple-darwin
- name: Install cargo-make
run: |
cargo install --force cargo-make
cargo install --force cargo-make --version 0.34.0
- name: Build
run: cargo make create-bundle --profile release --env BUILD_ARCH=aarch64-apple-darwin
- name: Codesign executable
Expand Down
2 changes: 1 addition & 1 deletion Compilation.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ These are the basic tools required to build espanso:
steps. You can install it by running:

```
cargo install --force cargo-make
cargo install --force cargo-make --version 0.34.0
```

# Linux
Expand Down

0 comments on commit b20aa9c

Please sign in to comment.