Skip to content

Commit

Permalink
chore: fix amalgmation build in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphiaRa committed Oct 7, 2024
1 parent feeb4ab commit fdaa4cb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y build-essential gperf
- name: Set up Python 3.8
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.x'
- name: Install Python dependencies
run: |
pip install -r requirements.txt
- name: Build
run: |
mkdir build; cd build
cmake ..
cmake .. -DPython3_EXECUTABLE==$(which python)
make -j$(nproc)
- name: Test
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ jobs:
- name: Install dependencies
run: |
brew install gperf
- name: Set up Python 3.8
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.x'
- name: Install Python dependencies
run: |
pip install -r requirements.txt
- name: Build
run: |
mkdir build; cd build
cmake ..
cmake .. -DPython3_EXECUTABLE==$(which python)
make -j$(nproc)
- name: Test
run: |
Expand Down

0 comments on commit fdaa4cb

Please sign in to comment.