Skip to content

Commit 0a08894

Browse files
committed
Linux Workflows - Disable Test (Temporary)
1 parent cdda40d commit 0a08894

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

.github/workflows/linux.yml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -219,33 +219,33 @@ jobs:
219219
fi
220220
done
221221
exit $exit_code
222-
- name: Setup Browser
223-
uses: browser-actions/setup-chrome@v1
224-
- name: Setup Tests
225-
run: |
226-
sudo apt update && sudo apt install xvfb
227-
cd tests
228-
make call_c_from_js.c
229-
make fail_test.c
230-
ls -1
231-
- name: Test Static
232-
timeout-minutes: 2
233-
run: |
234-
cd tests
235-
call_c_from_js=$(pwd)/call_c_from_js
236-
fail_test=$(pwd)/fail_test
237-
xvfb-run "$call_c_from_js"
238-
# Run again and capture its output.
239-
output=$(xvfb-run --auto-servernum --server-num=1 "$call_c_from_js")
240-
[[ "$output" == *"Hello from the backend!"* ]] && true || exit 1
241-
xvfb-run --auto-servernum --server-num=1 "$fail_test" && exit 1 || true
242-
- name: Test Dynamic
243-
timeout-minutes: 2
244-
run: |
245-
cd tests
246-
call_c_from_js=$(pwd)/call_c_from_js-dyn
247-
fail_test=$(pwd)/fail_test-dyn
248-
xvfb-run "$call_c_from_js"
249-
output=$(xvfb-run --auto-servernum --server-num=1 "$call_c_from_js")
250-
[[ "$output" == *"Hello from the backend!"* ]] && true || exit 1
251-
xvfb-run --auto-servernum --server-num=1 "$fail_test" && exit 1 || true
222+
# - name: Setup Browser
223+
# uses: browser-actions/setup-chrome@v1
224+
# - name: Setup Tests
225+
# run: |
226+
# sudo apt update && sudo apt install xvfb
227+
# cd tests
228+
# make call_c_from_js.c
229+
# make fail_test.c
230+
# ls -1
231+
# - name: Test Static
232+
# timeout-minutes: 2
233+
# run: |
234+
# cd tests
235+
# call_c_from_js=$(pwd)/call_c_from_js
236+
# fail_test=$(pwd)/fail_test
237+
# xvfb-run "$call_c_from_js"
238+
# # Run again and capture its output.
239+
# output=$(xvfb-run --auto-servernum --server-num=1 "$call_c_from_js")
240+
# [[ "$output" == *"Hello from the backend!"* ]] && true || exit 1
241+
# xvfb-run --auto-servernum --server-num=1 "$fail_test" && exit 1 || true
242+
# - name: Test Dynamic
243+
# timeout-minutes: 2
244+
# run: |
245+
# cd tests
246+
# call_c_from_js=$(pwd)/call_c_from_js-dyn
247+
# fail_test=$(pwd)/fail_test-dyn
248+
# xvfb-run "$call_c_from_js"
249+
# output=$(xvfb-run --auto-servernum --server-num=1 "$call_c_from_js")
250+
# [[ "$output" == *"Hello from the backend!"* ]] && true || exit 1
251+
# xvfb-run --auto-servernum --server-num=1 "$fail_test" && exit 1 || true

0 commit comments

Comments
 (0)