This repository has been archived by the owner on Oct 13, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
142 lines (119 loc) · 4.71 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
---
name: CI
on:
pull_request:
branches: [master, nightly]
types: [opened, synchronize, reopened]
push:
branches: [master, nightly]
workflow_dispatch:
jobs:
check_changelog:
name: Check Changelog
runs-on: ubuntu-latest
steps:
- name: Checkout
if: ${{ github.ref == 'refs/heads/master' || github.base_ref == 'master' }}
uses: actions/checkout@v3
- name: Verify Changelog
id: verify_changelog
if: ${{ github.ref == 'refs/heads/master' || github.base_ref == 'master' }}
# base_ref for pull request check, ref for push
uses: LizardByte/.github/actions/verify_changelog@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
outputs:
next_version: ${{ steps.verify_changelog.outputs.changelog_parser_version }}
last_version: ${{ steps.verify_changelog.outputs.latest_release_tag_name }}
release_body: ${{ steps.verify_changelog.outputs.changelog_parser_description }}
version_check:
runs-on: ubuntu-latest
needs: check_changelog
steps:
- name: Checkout
if: ${{ github.ref == 'refs/heads/master' || github.base_ref == 'master' }}
uses: actions/checkout@v3
- name: Install Python
if: ${{ github.ref == 'refs/heads/master' || github.base_ref == 'master' }}
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Set up Python Dependencies
if: ${{ github.ref == 'refs/heads/master' || github.base_ref == 'master' }}
run: |
echo "Installing RetroArcher Requirements"
python -m pip install --upgrade pip setuptools
python -m pip install -r requirements.txt --no-warn-script-location
- name: Get version
if: ${{ github.ref == 'refs/heads/master' || github.base_ref == 'master' }}
run: |
OUTPUT=$(python ./retroarcher.py --version)
echo "pyra_version=${OUTPUT}" >> $GITHUB_ENV
- name: Compare versions
if: ( env.pyra_version != needs.check_changelog.outputs.next_version ) && ( github.ref == 'refs/heads/master' || github.base_ref == 'master' ) # yamllint disable-line rule:line-length
run: |
echo "Version number in pyra/version.py does not match version in CHANGELOG.md"
exit 1
build:
strategy:
fail-fast: false
matrix:
os: [windows-2019, ubuntu-20.04, macos-11]
architecture: [x64]
include: # additional runs
- os: windows-2019
architecture: x86
runs-on: ${{ matrix.os }}
needs: [check_changelog, version_check]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
architecture: ${{ matrix.architecture }}
- name: Set up Python Dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install -r requirements-dev.txt --no-warn-script-location
- name: Compile Locale Translations
run: |
python ./scripts/_locale.py --compile
- name: Install npm packages
shell: bash
run: |
# install node_modules
npm install
# move node_modules directory to web directory
mv -f ./node_modules/ ./web/
- name: Compile Docs
working-directory: docs
run: |
make html
- name: Build pyinstaller package
run: |
python ./scripts/build.py
- name: Upload Artifacts
if: ${{ github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' }}
uses: actions/upload-artifact@v3 # https://github.com/actions/upload-artifact
with:
name: RetroArcher_${{ runner.os }}_${{ matrix.architecture }}
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
path: |
${{ github.workspace }}/dist
- name: Package Release
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
run: |
7z a "./RetroArcher_${{ runner.os }}_${{ matrix.architecture }}.zip" "dist"
- name: Create/Update GitHub Release
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
uses: ncipollo/release-action@v1 # https://github.com/ncipollo/release-action
with:
name: ${{ needs.check_changelog.outputs.next_version }}
tag: ${{ needs.check_changelog.outputs.next_version }}
artifacts: "*.zip"
token: ${{ secrets.GH_PAT }}
allowUpdates: true
body: ${{ needs.check_changelog.outputs.release_body }}
discussionCategory: Announcements