forked from sq5bpf/uvk5-reverse-engineering
-
Notifications
You must be signed in to change notification settings - Fork 13
80 lines (68 loc) · 3.04 KB
/
cxFreeze.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
on:
push:
env:
CHIRP_DIR: ${{github.workspace}}\temp\chirp
BASH: C:\tools\cygwin\bin\bash
jobs:
build:
runs-on: windows-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v3
- name: "Install Python"
uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pip'
cache-dependency-path: 'chirp\requirements-dev.txt'
- name: "Instal Python packages"
run: pip install -r chirp\requirements-dev.txt
- name: "Install Cygwin"
uses: egor-tensin/setup-cygwin@v4
with:
packages: make gettext
- name: "Prepare CHIRP repository"
run: >
New-Item -ItemType Directory -Force -Path temp &&
cd temp &&
git clone https://github.com/kk7ds/chirp.git &&
Copy-Item -Path "${{github.workspace}}\chirp\Makefile" -Destination "${{env.CHIRP_DIR}}\chirp\locale\" -Force &&
Copy-Item -Path "${{github.workspace}}\chirp\chirp.patch" -Destination "${{env.CHIRP_DIR}}\" -Force &&
Copy-Item -Path "${{github.workspace}}\chirp\setupCxFreeze.py" -Destination "${{env.CHIRP_DIR}}\" -Force &&
Copy-Item -Path "${{github.workspace}}\uvk5_egzumer.py" -Destination "${{env.CHIRP_DIR}}\chirp\drivers\" -Force &&
cd chirp &&
git apply chirp.patch;
if ("${{github.ref}}" -like "refs/tags/v*") {
$content = Get-Content -Path "chirp\__init__.py" -Raw;
$content = $content -replace 'CHIRP_VERSION = "py3dev"', "CHIRP_VERSION = `"${{github.ref_name}}`"";
Set-Content -Path "chirp\__init__.py" -Value $content;
$content = Get-Content -Path "setupCxFreeze.py" -Raw;
$content = $content -replace "version = '0.1'", "version = '${{github.ref_name}}'";
Set-Content -Path "setupCxFreeze.py" -Value $content;
}
- name: "Build CHIRP locale"
run: >
${{env.BASH}} --login -c "cd '${{env.CHIRP_DIR}}\chirp\locale'; make" &&
${{env.BASH}} --login -c "cd '${{env.CHIRP_DIR}}'; find chirp/locale/ -maxdepth 1 -type f -delete"
- name: "Build CHIRP"
run: >
cd "${{env.CHIRP_DIR}}";
python setupCxFreeze.py build;
cd build;
Get-ChildItem -Directory -Filter 'exe.win*' | ForEach-Object { Rename-Item $_.FullName -NewName 'CHIRP_egzumer' };
Compress-Archive CHIRP_egzumer\ CHIRP_egzumer.zip
- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
with:
name: CHIRP_egzumer
path: ${{env.CHIRP_DIR}}\build\CHIRP_egzumer\
- name: Upload onefile to release
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{env.CHIRP_DIR}}\build\CHIRP_egzumer.zip
asset_name: CHIRP_egzumer.zip
tag: ${{ github.ref }}
overwrite: true
release_name: release ${{ github.ref_name }}