aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTuomas Siipola2023-07-10 20:31:03 +0300
committerTuomas Siipola2023-07-10 20:31:03 +0300
commitf1bde34b284d6022041d48cff9cc8f1944ba278c (patch)
treec397c5b445a2ae9e25b6002f15b29c7ff3cb3c67
parent91fff09674bfd4d79afe6b32aeee8be3f7e7c289 (diff)
Fix operating system versions in GitHub ActionsHEADmaster
-rw-r--r--.github/workflows/rust.yml6
-rw-r--r--README.md2
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
diff --git a/README.md b/README.md
index 02e231e..525d21e 100644
--- a/README.md
+++ b/README.md
@@ -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`.