We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a54e4d commit 5bcf9a2Copy full SHA for 5bcf9a2
.github/workflows/rust.yml
@@ -9,8 +9,27 @@ on:
9
- cron: '0 0 * * 0-6'
10
11
jobs:
12
+ build:
13
+ name: Build on AArch64
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout sources
17
+ uses: actions/checkout@v2
18
+
19
+ - name: Install latest nightly
20
+ uses: actions-rs/toolchain@v1
21
+ with:
22
+ toolchain: nightly
23
+ override: true
24
+ components: rust-src
25
+ # TODO: cache Rust binaries
26
27
+ - name: Build
28
+ run: ./build.py build --target aarch64
29
+ working-directory: ./uefi-test-runner
30
31
build_and_test:
- name: Build and run tests
32
+ name: Build and run tests on x86_64
33
runs-on: ubuntu-latest
34
steps:
35
- name: Checkout sources
0 commit comments