Skip to content
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.

Commit

Permalink
test: threadpoolexecutor without ci matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
iruzo committed May 24, 2024
1 parent 503d92a commit 58471b5
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,11 @@ name: "Generate test artifacts"
on:
pull_request:
types: [opened, reopened, synchronize]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
theme: [mocha, macchiato, frappe, latte]

steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -23,15 +20,19 @@ jobs:
cache: "pip"

- name: Install dependencies
run: |
sudo apt update
sudo apt install -y sassc inkscape optipng
pip install -r requirements.txt
run: pip install -r requirements.txt

- name: Generate theme
- name: Install colloid specific dependencies
run: sudo apt update && sudo apt install -y sassc inkscape optipng

- name: Generate themes
run: |
python patches/xfwm4/generate_assets.py
python ./build.py ${{ matrix.theme }} --all-accents --zip -d $PWD/releases
python ./build.py mocha --all-accents --zip -d $PWD/releases &&
python ./build.py macchiato --all-accents --zip -d $PWD/releases &&
python ./build.py frappe --all-accents --zip -d $PWD/releases &&
python ./build.py latte --all-accents --zip -d $PWD/releases
- name: Upload artifacts
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 58471b5

Please sign in to comment.