Skip to content

Use Ubuntu 20.04 for now #505

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-latest
- os: ubuntu-20.04
rust: stable
- os: ubuntu-latest
- os: ubuntu-20.04
rust: beta
- os: ubuntu-latest
- os: ubuntu-20.04
rust: nightly
- os: macos-latest
rust: stable
Expand All @@ -34,7 +34,7 @@ jobs:
- os: windows-latest
rust: stable-x86_64-gnu
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
submodules: true
- name: Install Rust (rustup)
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
name: Windows AArch64
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
submodules: true
- name: Install Rust
Expand All @@ -141,7 +141,7 @@ jobs:
- target: x86_64-apple-ios
sdk: iphonesimulator
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
submodules: true
- run: rustup target add ${{ matrix.target }}
Expand All @@ -154,7 +154,7 @@ jobs:

docker:
name: Docker
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
target:
Expand All @@ -174,7 +174,7 @@ jobs:
- i686-linux-android
- x86_64-linux-android
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
submodules: true
- name: Install Rust
Expand All @@ -187,9 +187,9 @@ jobs:

rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
submodules: true
- name: Install Rust
Expand All @@ -198,7 +198,7 @@ jobs:

build:
name: Build Targets
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
target:
Expand All @@ -208,7 +208,7 @@ jobs:
- x86_64-fortanix-unknown-sgx
- x86_64-unknown-illumos
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
submodules: true
- name: Install Rust
Expand All @@ -221,9 +221,9 @@ jobs:

msrv:
name: MSRV
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
submodules: true
- name: Install Rust
Expand All @@ -232,9 +232,9 @@ jobs:

miri:
name: Miri
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
submodules: true
- name: Install Miri
Expand Down