Skip to content

Commit

Permalink
Do a 32-bit build for people who care about that sort of thing
Browse files Browse the repository at this point in the history
Ew. I guess some people want to use Lummao on 32-bit :(
  • Loading branch information
SaladDais committed Nov 6, 2023
1 parent 022f668 commit 2c00996
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,22 @@ jobs:
matrix:
os: [ubuntu-20.04, macos-11, windows-2022]
addrsize: ["64"]
include:
- os: "ubuntu-20.04"
addrsize: "32"
name: ${{matrix.os}}
runs-on: ${{matrix.os}}
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v1

- name: Install 32-bit Dependencies
if: ${{ matrix.addrsize == '32' }}
shell: bash
run: |
sudo apt-get update
sudo apt-get install gcc-multilib g++-multilib
- name: Install Mac Dependencies
if: ${{ runner.os == 'macOS' }}
shell: bash
Expand Down

0 comments on commit 2c00996

Please sign in to comment.