Skip to content

Commit

Permalink
fixed linux builds
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoernrennfanz committed Dec 5, 2024
1 parent 03e46bb commit 3bb8846
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -334,16 +334,16 @@ jobs:
- name: Set up needed linux requirements
if: runner.os == 'Linux' && matrix.architecture != 'arm64'
run: |
apt-get update && apt-get install -y locales
sed -i 's/^# *\(fr_FR.UTF-8\)/\1/' /etc/locale.gen
locale-gen
sudo apt-get update && sudo apt-get install -y locales
sudo sed -i 's/^# *\(fr_FR.UTF-8\)/\1/' /etc/locale.gen
sudo locale-gen
- name: Run pypylon unit tests for Python ${{ matrix.python-version }}
if: runner.os == 'Linux' && matrix.architecture == 'arm64'
uses: addnab/docker-run-action@v3
with:
image: arm64v8/python:${{ matrix.python-version }}-slim
options: --platform linux/arm64 -v \${{ github.workspace }}:/build -w /build
options: --platform linux/arm64 -v ${{ github.workspace }}:/build -w /build
run: |
apt-get update && apt-get install -y locales
sed -i 's/^# *\(fr_FR.UTF-8\)/\1/' /etc/locale.gen
Expand Down

0 comments on commit 3bb8846

Please sign in to comment.