-
Notifications
You must be signed in to change notification settings - Fork 9
31 lines (28 loc) · 801 Bytes
/
ci.yml
File metadata and controls
31 lines (28 loc) · 801 Bytes
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
name: 32-bit Build & Test
on:
push:
schedule:
- cron: '8 8 8 * *'
jobs:
Linux:
runs-on: ubuntu-latest
env:
BUNDLE_PATH: ~/.gem
steps:
- uses: actions/checkout@v3
- run: sudo gem install bundler -v 2.4.22
- run: sudo dpkg --add-architecture i386 && sudo apt-get update && sudo apt-get install gcc-multilib libcurl4-openssl-dev:i386 tk-dev:i386
- run: CFLAGS=-m32 ./cibuild
Windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3'
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW32
install: git mingw-w64-i686-gcc base-devel mingw-w64-i686-tk mingw-w64-i686-curl zip procps
- shell: msys2 {0}
run: ./cibuild