Skip to content

Commit

Permalink
Remove the no-default-features, use lock
Browse files Browse the repository at this point in the history
  • Loading branch information
dreampiggy committed Sep 28, 2023
1 parent 107cb1e commit 3f20ce9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/librav1e-xcode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
default: true
toolchain: 1.65.0
toolchain: 1.70.0
- name: Set up rust
run: |
rustup target add aarch64-apple-ios x86_64-apple-ios aarch64-apple-darwin x86_64-apple-darwin
Expand All @@ -54,7 +54,7 @@ jobs:
run: |
cd "${{ github.workspace }}/rav1e"
rm -rf "${{ github.workspace }}/rav1e/target"
cargo lipo --release --no-default-features --features "asm capi" --targets=aarch64-apple-ios,x86_64-apple-ios
cargo lipo --release --features "asm capi" --targets=aarch64-apple-ios,x86_64-apple-ios --locked --verbose
cd "${{ github.workspace }}"
mkdir -p Build
cd Build
Expand All @@ -72,7 +72,7 @@ jobs:
run: |
cd "${{ github.workspace }}/rav1e"
rm -rf "${{ github.workspace }}/rav1e/target"
cargo lipo --release --no-default-features --features "asm capi" --targets=aarch64-apple-darwin,x86_64-apple-darwin
cargo lipo --release --features "asm capi" --targets=aarch64-apple-darwin,x86_64-apple-darwin --locked --verbose
cd "${{ github.workspace }}"
mkdir -p Build
cd Build
Expand Down

0 comments on commit 3f20ce9

Please sign in to comment.