1
0
mirror of synced 2024-11-24 02:00:09 +01:00

Merge pull request #15 from julianorchard/patch-1

Add Docker image and test pre-releases/artifacts GitHub Action
This commit is contained in:
Bobby Dilley 2024-02-05 12:35:31 +00:00 committed by GitHub
commit 0c53cc5441
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 89 additions and 1 deletions

5
.dockerignore Normal file
View File

@ -0,0 +1,5 @@
*.md
.git
.gitignore
.vscode
docs

48
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,48 @@
name: Lindbergh Loader CI
on:
pull_request:
branches:
- master
push:
branches:
- master
# NOTE: Manual releases for now, only currently
# testing with pre-releases and artifacts
# tags:
# - 'v*'
jobs:
ci:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Build Docker image and output
uses: docker/build-push-action@v5
with:
context: .
push: false
outputs: type=local,dest=build
- name: Create build artifacts
uses: actions/upload-artifact@v3
if: github.event_name == 'pull_request'
with:
name: lindbergh-loader-${{ github.event.pull_request.head.sha }}
path: build/*
- name: Create pre-release
uses: "marvinpinto/action-automatic-releases@latest"
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Lindbergh Loader"
files: build/*

35
Dockerfile Normal file
View File

@ -0,0 +1,35 @@
FROM debian:bullseye AS lindbergh-build
RUN dpkg --add-architecture i386 \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
build-essential \
freeglut3-dev:i386 \
freeglut3:i386 \
gcc-multilib \
libglew-dev \
libopenal-dev:i386 \
libopenal1:i386 \
libstdc++5:i386 \
libxmu6:i386 \
wget \
xorg-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /xenial-libs
RUN wget -q http://launchpadlibrarian.net/534757982/multiarch-support_2.23-0ubuntu11.3_i386.deb \
&& dpkg -i multiarch-support_2.23-0ubuntu11.3_i386.deb
RUN wget -q http://launchpadlibrarian.net/184146495/libalut0_1.1.0-5_i386.deb \
&& dpkg -i libalut0_1.1.0-5_i386.deb
RUN wget -q http://launchpadlibrarian.net/184146496/libalut-dev_1.1.0-5_i386.deb \
&& dpkg -i libalut-dev_1.1.0-5_i386.deb
WORKDIR /lindbergh-loader
COPY . .
RUN make
# Output binaries of build using the --output=PATH argument
FROM scratch AS binaries
COPY --from=lindbergh-build /lindbergh-loader/build/* /

View File

@ -17,7 +17,7 @@ sudo apt install freeglut3:i386
sudo apt install freeglut3-dev:i386
sudo apt install libglew-dev
sudo apt install xorg-dev
sudo apt install libopenal1 libopenal-dev
sudo apt install libopenal1:i386 libopenal-dev:i386
sudo apt install libalut-dev:i386 // You will need to find libalut-dev:i386, libalut0:i386 and multiarch-support:i386 from Ubuntu Xenial.
sudo apt install libxmu6:i386
sudo apt install libstdc++5:i386