Skip to content

Commit

Permalink
Separate out the i18n tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Apr 14, 2023
1 parent e467f50 commit 4fa969a
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/build.yaml
Expand Up @@ -21,6 +21,11 @@ jobs:
run: |
make -C "$RUNNER_TEMP" check
BIPOLAR_TEST_LOCALE=de_DE.UTF-8 make -C "$RUNNER_TEMP" check
- name: Test i18n
run: |
make -C "$RUNNER_TEMP" check
env:
BIPOLAR_TEST_LOCALE: de_DE.UTF-8
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
Expand All @@ -45,18 +50,15 @@ jobs:
qmake -o "$RUNNER_TEMP" -r -Wall -Wlogic -Wparser CONFIG+=release "$GITHUB_WORKSPACE"
make -C "$RUNNER_TEMP" all
- name: Test
run:
make -C "$RUNNER_TEMP" check
BIPOLAR_TEST_LOCALE=de_DE.UTF-8 make -C "$RUNNER_TEMP" check
run: make -C "$RUNNER_TEMP" check
- name: Install additional locale for testing
run: |
sudo apt-mark hold grub-efi-amd64-signed
sudo apt update
sudo apt upgrade
sudo apt install language-pack-de
- name: Test i18n
run:
make -C "$RUNNER_TEMP" check
run: make -C "$RUNNER_TEMP" check
env:
BIPOLAR_TEST_LOCALE: de_DE.UTF-8
- name: Upload build artifacts
Expand All @@ -83,9 +85,11 @@ jobs:
qmake -o "$RUNNER_TEMP" -r -Wall -Wlogic -Wparser CONFIG+=release "$GITHUB_WORKSPACE"
make -C "$RUNNER_TEMP" all
- name: Test
run:
make -C "$RUNNER_TEMP" check
BIPOLAR_TEST_LOCALE=de_DE.UTF-8 make -C "$RUNNER_TEMP" check
run: make -C "$RUNNER_TEMP" check
- name: Test i18n
run: make -C "$RUNNER_TEMP" check
env:
BIPOLAR_TEST_LOCALE: de_DE.UTF-8
- name: Make macOS disk image
run:
make -C "$RUNNER_TEMP-build/pkg/osx" dmg'
Expand Down

0 comments on commit 4fa969a

Please sign in to comment.