Attempt to display up to 10 decades of ticks #8
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: Build binaries | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
dotnet-version: [ '8.0.x' ] | |
os: [windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }} | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- name: Install dependencies | |
run: dotnet restore | |
working-directory: source | |
- name: Run win-x64 build | |
working-directory: build-scripts | |
run: ./"NSD.UI (win-x64).bat" | |
- name: Upload win-x64 build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: NSD-win-x64 | |
path: builds/NSD.UI/win-x64/NSD-win-x64.exe | |
- name: Run linux-x64 build | |
working-directory: build-scripts | |
run: ./"NSD.UI (linux-x64).bat" | |
- name: Upload linux-x64 build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: NSD-linux-x64 | |
path: builds/NSD.UI/linux-x64/NSD-linux-x64 |