machine/ds1386.cpp: remove non-existant set_current_time fn override #193
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Compile UI translations | |
on: | |
push: | |
paths: | |
- '.github/workflows/**' | |
- 'language/**' | |
pull_request: | |
paths: | |
- '.github/workflows/**' | |
- 'language/**' | |
permissions: | |
contents: read | |
jobs: | |
build-language: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Compile message catalogs | |
run: for x in language/*/*.po ; do python scripts/build/msgfmt.py --output-file "`dirname "$x"`/`basename "$x" .po`.mo" "$x" ; done | |
- uses: actions/upload-artifact@master | |
with: | |
name: mame-language-${{ github.sha }} | |
path: language/*/*.mo |