1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
name: ci-linux
on:
push:
paths:
- "**"
- "!android/**"
- "!docs/**"
- "docs/Makefile.am"
- "!ios/**"
- "!macosx/**"
- "!msvcstuff/**"
- "!win32/**"
- "!AUTHORS"
- "!ChangeLog"
- "!COPYING"
- "!FAQ"
- "!INSTALL"
- "!NEWS"
- "!**README**"
- "!**.ico"
- "!**.md"
- "!**.png"
- "!**.txt"
- "!.clang*"
- "!.gitignore"
- "!.gitattributes"
- "!.github/workflows/*"
- ".github/workflows/ci-linux.yml"
pull_request:
paths:
- "**"
- "!android/**"
- "!docs/**"
- "docs/Makefile.am"
- "!ios/**"
- "!macosx/**"
- "!msvcstuff/**"
- "!win32/**"
- "!AUTHORS"
- "!ChangeLog"
- "!COPYING"
- "!FAQ"
- "!INSTALL"
- "!NEWS"
- "!**README**"
- "!**.ico"
- "!**.md"
- "!**.png"
- "!**.txt"
- "!.clang*"
- "!.gitignore"
- "!.gitattributes"
- "!.github/workflows/*"
- ".github/workflows/ci-linux.yml"
jobs:
notify:
name: Exult-CI (IRC & Discord notification)
runs-on: ubuntu-latest
continue-on-error: true
needs:
- ci-linux
if: ${{ always() && (github.repository_owner == 'exult' && github.event_name != 'pull_request') }}
steps:
- name: IRC success notification (ircs://irc.libera.chat:6697/#exult)
uses: Gottox/irc-message-action@v2
continue-on-error: true
if: needs.ci-linux.result == 'success'
with:
server: irc.libera.chat
port: 6697
channel: "#exult"
nickname: github-actions
tls: true
message: "\x0313exult\x03/\x0306${{ github.ref }}\x03 \x0314${{ github.sha }}\x03 https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} The Linux build \x033succeeded\x03."
- name: IRC failure notification (ircs://irc.libera.chat:6697/#exult)
uses: Gottox/irc-message-action@v2
continue-on-error: true
if: needs.ci-linux.result != 'success'
with:
server: irc.libera.chat
port: 6697
channel: "#exult"
nickname: github-actions
tls: true
message: "\x0313exult\x03/\x0306${{ github.ref }}\x03 \x0314${{ github.sha }}\x03 https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} The Linux build \x034failed\x03."
- name: Discord success notification
uses: rjstone/discord-webhook-notify@master
continue-on-error: true
if: needs.ci-linux.result == 'success'
with:
severity: info
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}
username: Exult github-actions
avatarUrl: https://avatars.githubusercontent.com/u/15114538?s=200&v=4
text: '**[The Linux build succeeded:](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})**'
- name: Discord failure notification
uses: rjstone/discord-webhook-notify@master
continue-on-error: true
if: needs.ci-linux.result != 'success'
with:
severity: error
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}
username: Exult github-actions
avatarUrl: https://avatars.githubusercontent.com/u/15114538?s=200&v=4
text: '**[The Linux build failed:](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})**'
ci-linux:
runs-on: ubuntu-latest
strategy:
matrix:
compiler: [gcc, clang]
include:
- compiler: gcc
cc: gcc
cxx: g++
- compiler: clang
cc: clang
cxx: clang++
steps:
- name: Install dependencies
run: |
if ! apt-fast -- help &> /dev/null; then
sudo add-apt-repository -u -y ppa:apt-fast/stable
sudo apt-get update
echo debconf apt-fast/maxdownloads string 16 | sudo debconf-set-selections
echo debconf apt-fast/dlflag boolean true | sudo debconf-set-selections
echo debconf apt-fast/aptmanager string apt-get | sudo debconf-set-selections
DEBIAN_FRONTEND=noninteractive sudo apt install -y apt-fast
else
sudo apt-fast update
fi
sudo apt-fast install -y \
zlib1g-dev libogg-dev libvorbis-dev libasound2-dev libfluidsynth-dev libsdl2-dev libsdl2-image-dev libpng-dev libfreetype6-dev libgtk2.0-dev libgtk-3-dev \
libgdk-pixbuf2.0-dev libxml2-dev bison flex timidity libgimp2.0-dev libicu-dev autoconf-archive
- name: Checkout code
uses: actions/checkout@v4
- name: Run autoreconf
run: |
autoreconf -v -i
- name: Configure
env:
OVERRIDE_CC: ${{ matrix.cc }}
OVERRIDE_CXX: ${{ matrix.cxx }}
run: |
./configure --with-debug=extreme --enable-exult-studio --enable-exult-studio-support --enable-compiler --enable-gimp-plugin \
--enable-zip-support --enable-shared --enable-midi-sfx --enable-shp-thumbnailer --enable-data --enable-mods \
--with-usecode-debugger=yes --enable-usecode-container --enable-nonreadied-objects \
--enable-aseprite-plugin \
CXX=${OVERRIDE_CXX} CC=${OVERRIDE_CC}
- name: Build
run: make -j 2
|