We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45c6ea3 commit 36e5bbaCopy full SHA for 36e5bba
.github/workflows/build.yml
@@ -22,6 +22,9 @@ jobs:
22
include:
23
- os: ubuntu-latest
24
target: x86_64-unknown-linux-gnu
25
+
26
+ - os: ubuntu-latest
27
+ target: aarch64-unknown-linux-gnu
28
29
- os: macOS-latest
30
target: x86_64-apple-darwin
@@ -45,4 +48,7 @@ jobs:
45
48
sudo apt-get -qq install musl-dev musl-tools pkg-config make
46
49
47
50
- name: Run build
- run: cargo build --release --locked --target ${{ matrix.target }}
51
+ run: cargo build --release --locked --target ${{ matrix.target }}
52
53
+ - name: Run the binary
54
+ run: ./target/${{ matrix.target }}/release/gitrack -p /tmp
0 commit comments