diff options
author | Tuomas Siipola | 2023-07-10 20:31:03 +0300 |
---|---|---|
committer | Tuomas Siipola | 2023-07-10 20:31:03 +0300 |
commit | f1bde34b284d6022041d48cff9cc8f1944ba278c (patch) | |
tree | c397c5b445a2ae9e25b6002f15b29c7ff3cb3c67 | |
parent | 91fff09674bfd4d79afe6b32aeee8be3f7e7c289 (diff) |
-rw-r--r-- | .github/workflows/rust.yml | 6 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 3e188ef..eb831db 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -47,11 +47,11 @@ jobs: strategy: matrix: include: - - os: ubuntu-18.04 + - os: ubuntu-20.04 target: x86_64-unknown-linux-gnu - - os: ubuntu-18.04 + - os: ubuntu-20.04 target: x86_64-unknown-linux-musl - - os: macos-10.15 + - os: macos-11 target: x86_64-apple-darwin steps: - uses: actions/checkout@v2 @@ -60,7 +60,7 @@ Download the latest Linux binary from [GitHub releases](https://github.com/siipt There are two versions: glibc and musl. glibc version is about 50% faster than musl version but may not work on old and non-glibc-based distributions. -For reference, the glibc version is built on Ubuntu 18.04 against glibc 2.27. +For reference, the glibc version is built on Ubuntu 20.04 against glibc 2.31. After downloading the binary, run `chmod +x path-to-pio` to make it executable. Consider storing the binary somewhere on your `PATH` like `/usr/local/bin/pio`. |