Skip to content

Commit d63b3a0

Browse files
authored
Merge pull request #103 from ful1e5/dev
macOS v2.0.1
2 parents 7af6c43 + e4d43f6 commit d63b3a0

File tree

695 files changed

+7033
-1923
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

695 files changed

+7033
-1923
lines changed

.github/workflows/build.yml

+29-19
Original file line numberDiff line numberDiff line change
@@ -19,33 +19,43 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
strategy:
2121
matrix:
22-
os: [ubuntu-latest, macos-latest, windows-latest]
23-
python-version: ["3.7", "3.8", "3.9", "3.10"]
22+
os: [ubuntu-latest]
23+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
2424

2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v4
2727

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

33-
- name: Installing pip dependencies
34-
run: python -m pip install --upgrade pip clickgen
33+
- name: Installing Node Dependencies
34+
run: |
35+
rm -rf node_modules yarn.lock
36+
yarn install --frozen-lockfile
3537
continue-on-error: false
3638

37-
# https://github.com/returntocorp/semgrep/issues/4794
38-
- name: Fixing 'attr' module error
39-
run: pip install --force-reinstall --upgrade attrs
39+
- name: Print cbmp version
40+
run: npx cbmp --version
41+
42+
- name: Rendering Bitmaps
43+
run: yarn render
44+
continue-on-error: false
4045

41-
- name: Building `macOS BigSur` Cursors
42-
run: ctgen build.toml -d 'bitmaps/macOS-BigSur' -n 'macOS-BigSur' -c 'macOS BigSur Cursors'
46+
- name: Set up Python
47+
uses: actions/setup-python@v5
48+
with:
49+
python-version: 3.11
4350

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

47-
- name: Building `macOS Monterey` Cursors
48-
run: ctgen build.toml -d 'bitmaps/macOS-Monterey' -n 'macOS-Monterey' -c 'macOS Monterey Cursors'
55+
- name: Print clickgen Version
56+
run: |
57+
clickgen --version
58+
ctgen --version
4959
50-
- name: Building `macOS Monterey White` Cursors
51-
run: ctgen build.toml -d 'bitmaps/macOS-Monterey-White' -n 'macOS-Monterey-White' -c 'macOS Monterey White Cursors'
60+
- name: Build
61+
run: yarn build

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
themes
22
bin
3+
bitmaps
34

45
# --------------------------------------------- Nodejs
56

0 commit comments

Comments
 (0)