Skip to content

Commit

Permalink
Merge pull request #15 from julianorchard/patch-1
Browse files Browse the repository at this point in the history
Add Docker image and test pre-releases/artifacts GitHub Action
  • Loading branch information
bobbydilley authored Feb 5, 2024
2 parents c8a8c11 + 25588be commit 0c53cc5
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*.md
.git
.gitignore
.vscode
docs
48 changes: 48 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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 changes: 35 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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/* /
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0c53cc5

Please sign in to comment.