Skip to content

Commit

Permalink
Include locales in build
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarBLG committed Oct 14, 2024
1 parent c4c5c32 commit 82b24b1
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,20 @@ jobs:

runs-on: windows-2022

needs: compile_locales

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

- name: Locales
uses: actions/download-artifact@v4
with:
name: locales
path: ${{github.workspace}}/locales

- name: Configure
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release -A x64 -DSIMRAIL=${{matrix.sr_flag}}

Expand All @@ -33,7 +41,7 @@ jobs:
run: cmake --install ${{github.workspace}}/build --prefix ${{github.workspace}}/dist

- name: Publish
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-win64-sr${{matrix.sr_flag}}
path: |
Expand All @@ -51,13 +59,13 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

- name: Cache wasi-sdk
id: cache-wasi-sdk
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{github.workspace}}/wasi-sdk
key: wasi-sdk-20
Expand All @@ -79,7 +87,7 @@ jobs:
run: cmake --build ${{github.workspace}}/build --config Release

- name: Publish
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-wasm-sr${{matrix.sr_flag}}-verbose${{matrix.verbose_flag}}
path: |
Expand All @@ -93,7 +101,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install gettext
run: |
Expand All @@ -105,7 +113,7 @@ jobs:
make
- name: Publish
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: locales
path: |
Expand Down

0 comments on commit 82b24b1

Please sign in to comment.