diff options
-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`. |