-
Notifications
You must be signed in to change notification settings - Fork 10
92 lines (76 loc) · 2.84 KB
/
ci.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: CI
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 5 1 * *'
jobs:
build:
name: ${{ matrix.arch }}-${{ matrix.type }}
runs-on: windows-latest
# don't run pull requests from local branches twice
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
fail-fast: false
matrix:
arch: [x64]
type: [Debug, Release]
defaults:
run:
shell: cmd
steps:
- uses: actions/checkout@v3
- uses: msys2/setup-msys2@v2
with:
msystem: MSYS
# make Windows packages like Clang available in MSYS
path-type: inherit
# install MSYS packages
install: make autoconf automake libtool pkg-config
- name: Remove Perl Strawberry installation
# C:\Strawberry contains various MinGW libraries and binaries like pkg-config
# that can get picked up by configure/CMake and don't necessarily behave
# correctly when not using a MinGW environment, and more specifically we cannot
# use MinGW gmake but must use MSYS make for correctly handling of Windows paths,
# so we delete everything that could mess up our builds
run: rmdir /S /Q C:\Strawberry
- name: Install Windows packages
run: choco install ninja nasm
- name: Upgrade LLVM
# Upgrade LLVM to get latest v16 release with fixes for Objective-C exception handling
run: choco upgrade llvm
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{ matrix.arch }}
- name: Build toolchain
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
:: use msys2.cmd from setup-msys2 as Bash shell, as it doesn't have msys2_shell.cmd used normally by build.bat
set "BASH=msys2 -c"
build.bat --type ${{ env.type }}
- name: Package release
run: |
tar -a -cf GNUstep-Windows-MSVC-${{matrix.arch}}-${{matrix.type}}.zip C:\GNUstep\${{matrix.arch}}\${{matrix.type}}
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
path: GNUstep-Windows-MSVC-${{matrix.arch}}-${{matrix.type}}.zip
name: GNUstep-Windows-MSVC-${{matrix.arch}}-${{matrix.type}}
prerelease:
needs: build
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/master' }}
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
- name: Update GitHub prerelease
if: ${{ github.ref == 'refs/heads/master' }}
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
automatic_release_tag: latest
prerelease: true
title: "Latest Build"
files: "**/GNUstep-Windows-MSVC-*.zip"