We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bee614a commit 511d368Copy full SHA for 511d368
.github/workflows/test.yml
@@ -86,6 +86,28 @@ jobs:
86
run: cargo build --target thumbv6m-none-eabi --color=always
87
working-directory: ./ci/core-test
88
89
+ intel_sgx:
90
+ strategy:
91
+ matrix:
92
+ os: [ubuntu-latest]
93
+
94
+ runs-on: ${{ matrix.os }}
95
96
+ steps:
97
+ - uses: actions/checkout@v2
98
99
+ - name: Install rust with fortanix sgx toolchain
100
+ uses: actions-rs/toolchain@v1
101
+ with:
102
+ toolchain: nightly
103
+ target: x86_64-fortanix-unknown-sgx
104
+ override: true
105
+ - uses: Swatinem/rust-cache@v1
106
107
+ - name: Build sgx lib
108
+ run: cargo build --target x86_64-fortanix-unknown-sgx --color=always
109
+ working-directory: ./ci/core-test
110
111
wasm:
112
strategy:
113
matrix:
0 commit comments