Skip to content

Commit

Permalink
Use latest macOS workers in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
whatyouhide committed Jul 14, 2024
1 parent 257cff1 commit 51943b9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
os: ubuntu-20.04
use-cross: true
- target: aarch64-apple-darwin
os: macos-11
os: macos-latest
- target: x86_64-apple-darwin
os: macos-11
os: macos-latest
- target: x86_64-unknown-linux-gnu
os: ubuntu-20.04
- target: x86_64-unknown-linux-musl
Expand Down
8 changes: 7 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@ To **release** a new version of this library:
1. Wait for CI to build all NIFs (with the new version).

1. Clean Rustler caches. If you don't do this, you can get issues with wrong
versions trying to be downloaded. To clean caches, find where RustlerPrecompiled stores caches with `:filename.basedir(:user_cache, "rustler_precompiled")` and wipe the directory.
versions trying to be downloaded. To clean caches, find where RustlerPrecompiled stores caches and wipe the directory. I usually do:
```shell
mix run -e ':filename.basedir(:user_cache, "rustler_precompiled")'
```
with `:filename.basedir(:user_cache, "rustler_precompiled")` and wipe the directory.
1. After wiping the caches, run this to get a local checksum file:
Expand Down

0 comments on commit 51943b9

Please sign in to comment.