Skip to content

Commit

Permalink
Update CI to use ubuntu-24.04
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Oct 26, 2024
1 parent 127f123 commit 93ebd76
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 19 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/bootstrap-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,24 @@ on: [push, pull_request]
env:
CT_ALLOW_BUILD_AS_ROOT_SURE: 1
DEBIAN_FRONTEND: noninteractive
FORCE_UNSAFE_CONFIGURE: 1

jobs:
ubuntu_23_10:
ubuntu_24_04:
strategy:
matrix:
platform: [modduo, modduo-static, modduo-new, modduox, modduox-static, modduox-new, moddwarf, moddwarf-new, generic-aarch64, generic-x86_64]
runs-on: ubuntu-latest
container:
image: ubuntu:23.10
image: ubuntu:22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/mod-workdir/download
key: download-ubuntu_23_10-${{ matrix.platform }}
key: download-ubuntu_24_04-${{ matrix.platform }}
- name: Install dependencies
run: |
apt-get update -qq && apt-get install -yqq \
Expand Down
30 changes: 16 additions & 14 deletions .github/workflows/bootstrap-minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on: [push, pull_request]
env:
CT_ALLOW_BUILD_AS_ROOT_SURE: 1
DEBIAN_FRONTEND: noninteractive
FORCE_UNSAFE_CONFIGURE: 1

jobs:
debian_12:
Expand All @@ -15,9 +16,9 @@ jobs:
container:
image: debian:12
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/mod-workdir/download
Expand All @@ -41,9 +42,9 @@ jobs:
container:
image: debian:11
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/mod-workdir/download
Expand All @@ -59,21 +60,22 @@ jobs:
sed -i 's/CT_LOG_PROGRESS_BAR=y/CT_LOG_PROGRESS_BAR=n/' toolchain/*.config
./bootstrap.sh ${{ matrix.platform }} minimal
ubuntu_23_10:
ubuntu_24_04:
strategy:
matrix:
platform: [modduo, modduo-new, modduo-static, modduox, modduox-static, modduox-new, moddwarf, moddwarf-new, generic-aarch64, generic-x86_64]
# platform: [modduo, modduo-new, modduo-static, modduox, modduox-static, modduox-new, moddwarf, moddwarf-new, generic-aarch64, generic-x86_64]
platform: [modduo-new, modduox-new, moddwarf-new, generic-aarch64, generic-x86_64]
runs-on: ubuntu-latest
container:
image: ubuntu:23.10
image: ubuntu:24.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/mod-workdir/download
key: download-ubuntu_23_10-${{ matrix.platform }}
key: download-ubuntu_24_04-${{ matrix.platform }}
- name: Install dependencies
run: |
apt-get update -qq && apt-get install -yqq \
Expand All @@ -93,9 +95,9 @@ jobs:
container:
image: ubuntu:22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/mod-workdir/download
Expand All @@ -119,9 +121,9 @@ jobs:
container:
image: ubuntu:20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/mod-workdir/download
Expand Down

0 comments on commit 93ebd76

Please sign in to comment.