Windows #1132
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: windows | |
on: | |
push: | |
tags: | |
- '*' | |
schedule: | |
- cron: '0 1 * * *' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
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 | |
target: x86-64 | |
- arch: i686 | |
arch2: i686 | |
bit: 32 | |
target: x86 | |
env: | |
LISP: sbcl-bin | |
RESULT_NAME: windows-${{ matrix.arch2 }} | |
RESULT_PATH: windows-${{ matrix.arch2 }} | |
RESULT_PATH_SUB: roswell | |
SBCL_OPTIONS: | |
ARCH: ${{ matrix.target }} | |
VERSION: ${{ secrets.VERSION }} | |
GITHUB_OAUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
environment: SET_VERSION | |
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 curl unzip' | |
- name: Run MSYS2 once | |
shell: msys2 {0} | |
run: | | |
pwd | |
echo $MSYSTEM | |
echo $MSYS2_PATH_TYPE | |
echo $PATH | |
- name: install roswell | |
shell: msys2 {0} | |
run: | | |
gcc -v | |
curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh | |
ros install snmsts/sn.github roswell/sbcl_bin | |
- name: build sbcl | |
shell: msys2 {0} | |
run: | | |
make -f Build latest-version compile archive upload-archive; |