Skip to content

Commit

Permalink
Touch header file
Browse files Browse the repository at this point in the history
  • Loading branch information
albin-mullvad committed Sep 5, 2024
1 parent bc4700e commit 6d4fd06
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 5 deletions.
107 changes: 105 additions & 2 deletions .github/workflows/android-app-multiple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:

- name: Use custom container image if specified
if: ${{ github.event.inputs.override_container_image != '' }}
run: echo "inner_container_image=${{ github.event.inputs.override_container_image }}"
run:
echo "inner_container_image=${{ github.event.inputs.override_container_image }}"
>> $GITHUB_ENV

- name: Use default container image and resolve digest
Expand All @@ -40,7 +41,109 @@ jobs:
strategy:
fail-fast: false
matrix:
attempt: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30]
attempt:
[
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,

Check failure on line 145 in .github/workflows/android-app-multiple.yml

View workflow job for this annotation

GitHub Actions / check-formatting

145:12 [indentation] wrong indentation: expected 12 but found 11
]
steps:
# Fix for HOME path overridden by GH runners when building in containers, see:
# https://github.com/actions/runner/issues/863
Expand Down
4 changes: 2 additions & 2 deletions build-apk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ mkdir -p "app/build/extraAssets"
mkdir -p "app/build/extraJni"
popd

cargo install --force cbindgen
#cargo install --force cbindgen

for ARCHITECTURE in ${ARCHITECTURES:-aarch64 armv7 x86_64 i686}; do
for ARCHITECTURE in ${ARCHITECTURES:-x86_64}; do
case "$ARCHITECTURE" in
"x86_64")
TARGET="x86_64-linux-android"
Expand Down
2 changes: 1 addition & 1 deletion wireguard-go-rs/libwg/wireguard-go
Submodule wireguard-go updated 1 files
+2 −1 Makefile

0 comments on commit 6d4fd06

Please sign in to comment.