Add initial NFD r0 support. #1035
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
on: | |
push: | |
branches: '*' | |
pull_request: | |
name: CI | |
jobs: | |
test-ubuntu: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Dependency packages (apt) | |
run: | | |
sudo apt update | |
sudo apt -y install python3-pip | |
- name: Dependency packages (pip) | |
run: python3 -m pip install --user setuptools_scm mypy types-requests . | |
- name: Tests | |
run: | | |
make mypy | |
bash scripts/tests/test.sh | |
build-ubuntu: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Dependency packages (apt) | |
run: | | |
sudo apt update | |
sudo apt -y install python3-pip | |
- name: Dependency packages (pip) | |
run: python3 -m pip install --user setuptools_scm | |
- name: Set environment variables | |
id: vars | |
run: | | |
echo "ver=$(make version)" >> $GITHUB_OUTPUT | |
- name: Build dist | |
run: make dist | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: greaseweazle-ci-${{ steps.vars.outputs.ver }}-sdist | |
path: greaseweazle-${{ steps.vars.outputs.ver }}.zip | |
build-win32: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
architecture: x86 | |
- name: Dependency packages (pip) | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
python -m pip install --user cx_Freeze setuptools_scm | |
- name: Set environment variables | |
id: vars | |
shell: bash | |
run: | | |
echo "ver=$(make version)" >> $GITHUB_OUTPUT | |
- name: Build dist | |
shell: bash | |
run: | | |
export GW=greaseweazle-${{ steps.vars.outputs.ver }} | |
make windist | |
curl -L http://softpres.org/_media/files:spsdeclib_5.1_windows.zip --output ipf.zip | |
7z x -oipf ipf.zip | |
cp -a ipf/capsimg_binary/CAPSImg.dll $GW/ | |
rm -rf ipf ipf.zip | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: greaseweazle-ci-${{ steps.vars.outputs.ver }}-win32 | |
path: greaseweazle-${{ steps.vars.outputs.ver }} | |
build-win64: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
architecture: x64 | |
- name: Dependency packages (pip) | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
python -m pip install --user cx_Freeze setuptools_scm | |
- name: Set environment variables | |
id: vars | |
shell: bash | |
run: | | |
echo "ver=$(make version)" >> $GITHUB_OUTPUT | |
- name: Build dist | |
shell: bash | |
run: | | |
export GW=greaseweazle-${{ steps.vars.outputs.ver }} | |
make windist | |
curl -L http://softpres.org/_media/files:spsdeclib_5.1_windows.zip --output ipf.zip | |
7z x -oipf ipf.zip | |
cp -a ipf/capsimg_binary/x64/CAPSImg.dll $GW/ | |
rm -rf ipf ipf.zip | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: greaseweazle-ci-${{ steps.vars.outputs.ver }}-win64 | |
path: greaseweazle-${{ steps.vars.outputs.ver }} |