Skip to content

Commit ef1d4a3

Browse files
committed
Synchronize ubuntu versions
1 parent 7cd28d4 commit ef1d4a3

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
style:
1414
name: Check Style
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-22.04
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v1
@@ -35,7 +35,7 @@ jobs:
3535
test:
3636
name: Test
3737
needs: [style]
38-
runs-on: ubuntu-latest
38+
runs-on: ubuntu-22.04
3939
steps:
4040
- name: Checkout
4141
uses: actions/checkout@v1
@@ -47,10 +47,9 @@ jobs:
4747
profile: minimal
4848
override: true
4949

50-
- name: Build debug
51-
uses: actions-rs/cargo@v1
52-
with:
53-
command: build
50+
- name: Build
51+
shell: bash
52+
run: "make"
5453

5554
- name: Test
5655
shell: bash
@@ -60,7 +59,7 @@ jobs:
6059
name: deploy
6160
needs: [test]
6261
if: startsWith(github.ref, 'refs/tags/')
63-
runs-on: ubuntu-latest
62+
runs-on: ubuntu-22.04
6463
strategy:
6564
matrix:
6665
target: [ aarch64-unknown-linux-gnu, armv7-unknown-linux-gnueabihf, i686-unknown-linux-gnu, i686-unknown-linux-musl, powerpc64-unknown-linux-gnu, powerpc64le-unknown-linux-gnu, arm-unknown-linux-gnueabi, x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl ]

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu
1+
FROM ubuntu:22.04
22

33
# Install `sudo` so `staticfloat` can mount things
44
RUN apt update -y && apt install -y sudo curl openssh-client

0 commit comments

Comments
 (0)