Workflows: Bump versions

pull/84/head
Andre Richter 4 years ago
parent 25ed9e4e42
commit dd296f7eca
No known key found for this signature in database
GPG Key ID: 2116C1AB102F615E

@ -21,14 +21,14 @@ on:
jobs: jobs:
build: build:
name: Build kernels name: Build kernels
runs-on: ubuntu-18.04 runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Set up Ruby 2.x - name: Set up Ruby 2.x
uses: actions/setup-ruby@v1 uses: actions/setup-ruby@v1
with: with:
ruby-version: 2.x ruby-version: "2.7"
- name: Set up Rust nightly - name: Set up Rust nightly
run: | run: |
rustup self update rustup self update

@ -21,14 +21,14 @@ on:
jobs: jobs:
build: build:
name: Build kernels name: Build kernels
runs-on: ubuntu-18.04 runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Set up Ruby 2.x - name: Set up Ruby 2.x
uses: actions/setup-ruby@v1 uses: actions/setup-ruby@v1
with: with:
ruby-version: 2.x ruby-version: "2.7"
- name: Set up Rust nightly - name: Set up Rust nightly
run: | run: |
rustup self update rustup self update

@ -11,10 +11,10 @@ on:
jobs: jobs:
build: build:
name: Various Sanity Checks name: Various Sanity Checks
runs-on: ubuntu-18.04 runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Set up Node - name: Set up Node
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
@ -22,7 +22,7 @@ jobs:
- name: Set up Ruby 2.x - name: Set up Ruby 2.x
uses: actions/setup-ruby@v1 uses: actions/setup-ruby@v1
with: with:
ruby-version: 2.x ruby-version: "2.7"
- name: Set up Bundler - name: Set up Bundler
run: | run: |
gem install bundler gem install bundler

@ -21,21 +21,21 @@ on:
jobs: jobs:
build: build:
name: Run integration tests name: Run integration tests
runs-on: ubuntu-18.04 runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Set up Ruby 2.x - name: Set up Ruby 2.x
uses: actions/setup-ruby@v1 uses: actions/setup-ruby@v1
with: with:
ruby-version: 2.x ruby-version: "2.7"
- name: Set up Rust nightly - name: Set up Rust nightly
run: | run: |
rustup self update rustup self update
rustup toolchain install nightly --component llvm-tools-preview rustup toolchain install nightly --component llvm-tools-preview
rustup default nightly rustup default nightly
rustup target add aarch64-unknown-none-softfloat rustup target add aarch64-unknown-none-softfloat
cargo install cargo-binutils cargo install cargo-binutils
- name: Set up Ruby - name: Set up Ruby
run: | run: |
gem install bundler gem install bundler

@ -21,21 +21,21 @@ on:
jobs: jobs:
build: build:
name: Run unit tests name: Run unit tests
runs-on: ubuntu-18.04 runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Set up Ruby 2.x - name: Set up Ruby 2.x
uses: actions/setup-ruby@v1 uses: actions/setup-ruby@v1
with: with:
ruby-version: 2.x ruby-version: "2.7"
- name: Set up Rust nightly - name: Set up Rust nightly
run: | run: |
rustup self update rustup self update
rustup toolchain install nightly --component llvm-tools-preview rustup toolchain install nightly --component llvm-tools-preview
rustup default nightly rustup default nightly
rustup target add aarch64-unknown-none-softfloat rustup target add aarch64-unknown-none-softfloat
cargo install cargo-binutils cargo install cargo-binutils
- name: Set up Ruby - name: Set up Ruby
run: | run: |
gem install bundler gem install bundler

Loading…
Cancel
Save