Second attempt to implement SMS 2FA for #51 #116
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: CLI builds | |
on: push | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- triple: 'x86_64-linux-gnu' | |
target: 'linux' | |
- triple: 'aarch64-linux-gnu' | |
target: 'linux' | |
- triple: 'x86_64-windows-msvc' | |
target: 'windows' | |
- triple: 'x86_64-apple-darwin' | |
target: 'macos' | |
- triple: 'arm64-apple-macos' | |
target: 'macos' | |
name: Build CLI for ${{ matrix.triple }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Update APT repos | |
run: sudo apt-get update | |
- name: Set-up D compiler | |
uses: ./.github/actions/setup-d-compiler | |
with: | |
target-triple: ${{ matrix.triple }} | |
- name: Write version file | |
uses: ./.github/actions/write-version-file | |
- name: Build | |
run: dub build -b release-debug --compiler=ldc2 --arch ${{ matrix.triple }} :cli-frontend | |
- name: Move files around for artifcation | |
uses: ./.github/actions/rename-files | |
with: | |
build-tag: cli-${{ matrix.triple }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: sideloader-cli-${{ matrix.triple }} | |
path: | | |
${{github.workspace}}/bin/* |