Skip to content

Commit

Permalink
fix(ci): workaround - lock linux-x86_64 to ubuntu 20.04 (#5032)
Browse files Browse the repository at this point in the history
Description
Lock linux-x86_64 to ubuntu 20.04 - workaround

Motivation and Context
GitHub action runner ```ubuntu-latest``` has been progressed to Ubuntu 22.04, install scripts target clang-10, which is default in Ubuntu 22.04

How Has This Been Tested?
Built locally and in local fork
  • Loading branch information
leet4tari committed Dec 9, 2022
1 parent 21ca5e0 commit dc2cd82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/base_node_binaries.json
@@ -1,7 +1,7 @@
[
{
"name": "linux-x86_64",
"runs-on": "ubuntu-latest",
"runs-on": "ubuntu-20.04",
"rust": "nightly-2022-05-01",
"target": "x86_64-unknown-linux-gnu",
"cross": false,
Expand Down

0 comments on commit dc2cd82

Please sign in to comment.