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 68813c6 commit 44ced57Copy full SHA for 44ced57
.github/actions/ci_script/action.yml
@@ -12,6 +12,11 @@ runs:
12
echo "directories.tokendir = /tmp/tokens" > /tmp/softhsm2.conf
13
shell: bash
14
15
+ - name: Install i686 dependencies
16
+ run: |
17
+ sudo apt-get install -y -qq gcc-multilib
18
+ shell: bash
19
+
20
- name: Install Rust targets
21
run: |
22
rustup target add armv7-unknown-linux-gnueabi &&
ci.sh
@@ -38,3 +38,6 @@ RUST_BACKTRACE=1 cargo build --target aarch64-apple-darwin
38
RUST_BACKTRACE=1 cargo build --target x86_64-unknown-freebsd
39
40
RUST_BACKTRACE=1 cargo test
41
42
+# test also on i668
43
+RUST_BACKTRACE=1 cargo test --target i686-unknown-linux-gnu
0 commit comments