Skip to content

Commit 6811d51

Browse files
authored
Merge pull request #375 from vil02/warmup_ballerina
chore: prevent ballerina from downloading updates
2 parents 337cf4c + 6f0f14d commit 6811d51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/generate_and_upload_coverage_data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name: generate_and_upload_coverage_data
1111
jobs:
1212
generate_and_upload_coverage_data:
1313
name: generate_and_upload_coverage_data
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-22.04
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4

tests/setup_ballerina.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def run_code(in_code, tmp_folder):
2727
gu.save_str_to_file(tmp_folder / source_filename, in_code)
2828

2929
res = gu.subprocess_run_with_check(
30-
[get_bal(), "run", source_filename],
30+
[get_bal(), "run", "--offline", source_filename],
3131
cwd=str(tmp_folder),
3232
capture_output=True,
3333
text=True,

0 commit comments

Comments
 (0)