Skip to content

Commit

Permalink
Merge pull request #103 from ful1e5/dev
Browse files Browse the repository at this point in the history
macOS v2.0.1
  • Loading branch information
ful1e5 authored May 5, 2024
2 parents 7af6c43 + e4d43f6 commit d63b3a0
Show file tree
Hide file tree
Showing 695 changed files with 7,033 additions and 1,923 deletions.
48 changes: 29 additions & 19 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,33 +19,43 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
- name: Setup node
uses: actions/setup-node@v4
with:
python-version: ${{ matrix.python-version }}
node-version: 16

- name: Installing pip dependencies
run: python -m pip install --upgrade pip clickgen
- name: Installing Node Dependencies
run: |
rm -rf node_modules yarn.lock
yarn install --frozen-lockfile
continue-on-error: false

# https://github.com/returntocorp/semgrep/issues/4794
- name: Fixing 'attr' module error
run: pip install --force-reinstall --upgrade attrs
- name: Print cbmp version
run: npx cbmp --version

- name: Rendering Bitmaps
run: yarn render
continue-on-error: false

- name: Building `macOS BigSur` Cursors
run: ctgen build.toml -d 'bitmaps/macOS-BigSur' -n 'macOS-BigSur' -c 'macOS BigSur Cursors'
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11

- name: Building `macOS BigSur White` Cursors
run: ctgen build.toml -d 'bitmaps/macOS-BigSur-White' -n 'macOS-BigSur-White' -c 'macOS BigSur White Cursors'
- name: Installing PyPi Dependencies
run: python -m pip install --upgrade pip clickgen
continue-on-error: false

- name: Building `macOS Monterey` Cursors
run: ctgen build.toml -d 'bitmaps/macOS-Monterey' -n 'macOS-Monterey' -c 'macOS Monterey Cursors'
- name: Print clickgen Version
run: |
clickgen --version
ctgen --version
- name: Building `macOS Monterey White` Cursors
run: ctgen build.toml -d 'bitmaps/macOS-Monterey-White' -n 'macOS-Monterey-White' -c 'macOS Monterey White Cursors'
- name: Build
run: yarn build
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
themes
bin
bitmaps

# --------------------------------------------- Nodejs

Expand Down
Loading

0 comments on commit d63b3a0

Please sign in to comment.