adding arm64

test
This commit is contained in:
Vishal 2022-12-28 01:35:59 +05:30 committed by GitHub
parent a9b71b1140
commit 8a3e38eab7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,62 @@ on:
jobs:
build_linux:
runs-on: ubuntu-latest.arm64
steps:
- uses: actions/checkout@v3
# Note: This workflow uses the latest stable version of the Dart SDK.
# You can specify other versions if desired, see documentation here:
# https://github.com/dart-lang/setup-dart/blob/main/README.md
# - uses: dart-lang/setup-dart@v1
- uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603
- name: Install dependencies
run: dart pub get
# Uncomment this step to verify the use of 'dart format' on each commit.
# - name: Verify formatting
# run: dart format --output=none --set-exit-if-changed .
# Consider passing '--fatal-infos' for slightly stricter analysis.
- name: Analyze project source
run: dart analyze
# Your project will need to have tests in test/ and a dependency on
# package:test for this step to succeed. Note that Flutter projects will
# want to change this to 'flutter test'.
- name: Run tests
run: dart test -r expanded
- name: compile exe
run: dart compile exe bin/nostr_console.dart --output bin/nostr_console_elf_arm64
- name: change permission to make it executible
run: chmod 755 bin/nostr_console_elf_arm64
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: nostr_console_elf_arm64
path: |
bin/nostr_console_elf_arm64
- name: List files in the repository
run: |
ls ${{ github.workspace }}/bin
- name: Download a Build Artifact
uses: actions/download-artifact@v3.0.0
with:
# Artifact name
name: nostr_console_elf_arm64
# Destination path
path: ./
build_linux_arm64:
runs-on: ubuntu-latest
steps:
@ -73,6 +129,8 @@ jobs:
# Destination path
path: ./
build_win:
runs-on: windows-latest