Skip to content

Commit

Permalink
Merge pull request #228 from stepchowfun/ubuntu-22.04
Browse files Browse the repository at this point in the history
Update the Ubuntu version in the toastfile to 22.04 LTS
  • Loading branch information
stepchowfun committed May 4, 2024
2 parents 21b5922 + 0169f79 commit 845ee08
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions toast.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: ubuntu:22.04
image: ubuntu:24.04
default: build
user: user
command_prefix: |
Expand Down Expand Up @@ -29,20 +29,22 @@ tasks:
command: |
# Install the following packages:
#
# - build-essential - Used to link some crates
# - curl - Used for installing Tagref and Rust
# - gcc-aarch64-linux-gnu - Used for linking the binary for AArch64
# - gcc-x86-64-linux-gnu - Used for linking the binary for x86-64
# - git - Required by pre-commit
# - python3-pip - Used for installing and running pre-commit
# - git - Used for testing the pre-commit configuration
# - pre-commit - Used for testing the pre-commit configuration
# - ripgrep - Used for various linting tasks
# - shellcheck - Used for linting shell scripts
apt-get update
apt-get install --yes \
build-essential \
curl \
gcc-aarch64-linux-gnu \
gcc-x86-64-linux-gnu \
git \
python3-pip \
pre-commit \
ripgrep \
shellcheck
Expand All @@ -59,8 +61,8 @@ tasks:
description: Create a user who doesn't have root privileges.
user: root
command: |
# Create a user named `user` with a home directory.
adduser --disabled-password --gecos '' user
# Create a user named `user` with a home directory and with Bash as the login shell.
useradd user --create-home --shell /bin/bash
install_rust:
description: Install Rust, a systems programming language.
Expand Down Expand Up @@ -146,10 +148,6 @@ tasks:
- artifacts
- target
command: |
# Install pre-commit.
pip3 install pre-commit
PATH="$PATH:/home/user/.local/bin"
# Set up a Git repository.
git config --global user.email '[email protected]'
git config --global user.name 'Tagref'
Expand Down

0 comments on commit 845ee08

Please sign in to comment.