Skip to content

Commit

Permalink
Merge pull request #46 from stephengtuggy/mantic
Browse files Browse the repository at this point in the history
Mantic
  • Loading branch information
BenjamenMeyer authored Nov 24, 2023
2 parents 85b8084 + 4be41ab commit 4129f10
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Anchore-Container-Scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: false
matrix:
FROM:
- 'ubuntu:lunar'
- 'ubuntu:mantic'
- 'ubuntu:jammy'
- 'ubuntu:focal'
- 'ubuntu:bionic'
Expand All @@ -46,7 +46,7 @@ jobs:
- 'rockylinux:8.6'
- 'rockylinux:8.5'
- 'manjarolinux/base'
- 'funtoo/stage3-generic_64'
#- 'funtoo/stage3-generic_64'

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-actions-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: true
matrix:
FROM:
- 'ubuntu:lunar'
- 'ubuntu:mantic'
- 'ubuntu:jammy'
- 'ubuntu:focal'
- 'ubuntu:bionic'
Expand All @@ -36,7 +36,7 @@ jobs:
- 'rockylinux:8.6'
- 'rockylinux:8.5'
- 'manjarolinux/base'
- 'funtoo/stage3-generic_64'
#- 'funtoo/stage3-generic_64'

steps:
- name: Checkout repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-actions-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
FROM:
- 'ubuntu:lunar'
- 'ubuntu:mantic'
- 'ubuntu:jammy'
- 'ubuntu:focal'
- 'ubuntu:bionic'
Expand All @@ -43,7 +43,7 @@ jobs:
- 'rockylinux:8.6'
- 'rockylinux:8.5'
- 'manjarolinux/base'
- 'funtoo/stage3-generic_64'
#- 'funtoo/stage3-generic_64'

steps:
- name: Checkout repository
Expand Down
35 changes: 34 additions & 1 deletion script/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
set -e

echo "------------------------------"
echo "--- bootstrap | 2023-07-09 ---"
echo "--- bootstrap | 2023-11-24 ---"
echo "------------------------------"

UPDATE_ALL_SYSTEM_PACKAGES="$1"
Expand Down Expand Up @@ -177,6 +177,39 @@ function bootstrapOnUbuntu()
fi

case "$LINUX_CODENAME" in
"mantic")
apt-get -qy install \
git \
cmake \
python3-dev \
build-essential \
automake \
autoconf \
libpng16-16 \
libpng-dev \
libpng-tools \
libjpeg-turbo8-dev \
libexpat1-dev \
libgdk-pixbuf-2.0-dev \
libgtk-3-dev \
libopenal-dev \
libogg-dev \
libvorbis-dev \
libglvnd-dev \
libgl1-mesa-dev \
libsdl1.2-dev \
libsdl2-dev \
libopengl0 \
libpostproc-dev \
freeglut3-dev \
libboost-python-dev \
libboost-log-dev \
libboost-regex-dev \
libboost-program-options-dev \
libxmu-dev \
clang \
lsb-release
;;
"lunar")
apt-get -qy install \
git \
Expand Down

0 comments on commit 4129f10

Please sign in to comment.