Add Chinese translation for entities named from 'Sxx' to 'Txx'. #293
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: CINoWindows | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
inputs: | |
debug_enabled: | |
description: 'Build and run interactive shell' | |
required: false | |
default: false | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
# Installation of dependencies is too OS-dependent now, we don't | |
# miss that much by particularizing this in a per-OS basis. | |
build-linux-appimage: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup interactive shell session | |
uses: mxschmitt/action-tmate@v3 | |
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }} | |
- name: Install dependencies | |
uses: "./.github/actions/linuxdeps" | |
- name: Build & Distribute (SigDigger) | |
run: | | |
cd Scripts | |
chmod a+x dist-appimage.sh | |
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH":"$PWD"/deploy-root/lib | |
SIGDIGGER_EMBED_SOAPYSDR=1 BUILDTYPE=Release BRANCH=master ./dist-appimage.sh | |
cd .. | |
- name: Archive AppImage files | |
uses: actions/upload-artifact@v2 | |
with: | |
name: linux-latest-appimage | |
path: Scripts/*.AppImage | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup interactive shell session | |
uses: mxschmitt/action-tmate@v3 | |
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }} | |
- name: Install dependencies | |
uses: "./.github/actions/macosdeps" | |
- name: Build & Distribute (SigDigger) | |
run: | | |
cd Scripts | |
chmod a+x dist-dmg.sh | |
SIGDIGGER_EMBED_SOAPYSDR=1 BUILDTYPE=Release BRANCH=master ./dist-dmg.sh | |
cd .. | |
- name: Archive .DMG files | |
uses: actions/upload-artifact@v2 | |
with: | |
name: macos-latest-dmg | |
path: Scripts/*.dmg | |