mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
70 lines
1.5 KiB
YAML
70 lines
1.5 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
#pull_request:
|
|
#schedule:
|
|
# - cron: '0 */2 * * *'
|
|
|
|
jobs:
|
|
build-windows:
|
|
runs-on: windows-latest
|
|
timeout-minutes: 90
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
arch: [x86_64, i686]
|
|
include:
|
|
- arch: x86_64
|
|
arch2: amd64
|
|
bit: 64
|
|
- arch: i686
|
|
arch2: i686
|
|
bit: 32
|
|
env:
|
|
RESULT_NAME: windows-${{ matrix.arch2 }}
|
|
RESULT_PATH: windows-${{ matrix.arch2 }}
|
|
RESULT_PATH_SUB: roswell
|
|
steps:
|
|
- run: git config --global core.autocrlf false
|
|
- uses: actions/checkout@v2
|
|
- uses: msys2/setup-msys2@v2
|
|
with:
|
|
msystem: MINGW${{ matrix.bit }}
|
|
path-type: inherit
|
|
release: true
|
|
update: true
|
|
install: 'base-devel mingw-w64-${{ matrix.arch }}-toolchain'
|
|
- name: Run MSYS2 once
|
|
shell: msys2 {0}
|
|
run: |
|
|
pwd
|
|
echo $MSYSTEM
|
|
echo $MSYS2_PATH_TYPE
|
|
echo $PATH
|
|
- name: Build
|
|
shell: msys2 {0}
|
|
run: |
|
|
gcc -v
|
|
./bootstrap
|
|
./configure
|
|
make
|
|
make install
|
|
make winrelease
|
|
- name: Copy result
|
|
if: always()
|
|
shell: msys2 {0}
|
|
run: |
|
|
mkdir -p $RESULT_PATH
|
|
cp *.zip $RESULT_PATH/tmp.zip
|
|
cd $RESULT_PATH
|
|
7z x tmp.zip
|
|
rm tmp.zip
|
|
- name: Upload Result
|
|
if: always()
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: ${{ env.RESULT_NAME }}
|
|
path: ${{ env.RESULT_PATH }}
|
|
|