You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# can't use the option below because of error "Input 'submodules' not supported when falling back to download using the GitHub REST API. To create a local Git repository instead, add Git 2.18 or higher to the PATH."
# workaround for https://github.com/actions/runner/issues/2033
325
+
- name: ownership workaround
326
+
run: git config --global --add safe.directory '*'
327
+
328
+
- name: check mono version
329
+
run: mono --version
330
+
- name: run
331
+
run: ./configure.sh && make run
332
+
333
+
linux24-vanilla--stockdotnet6-only:
334
+
runs-on: ubuntu-24.04
335
+
container:
336
+
image: "ubuntu:24.04"
337
+
steps:
338
+
- uses: actions/checkout@v1
339
+
# can't use the option below because of error "Input 'submodules' not supported when falling back to download using the GitHub REST API. To create a local Git repository instead, add Git 2.18 or higher to the PATH."
340
+
# with:
341
+
# submodules: 'true'
342
+
343
+
- name: install sudo
344
+
run: apt update && apt install --yes sudo
345
+
- name: install all dependencies
346
+
run: sudo DEBIAN_FRONTEND=noninteractive apt install --yes git make curl dotnet6
347
+
348
+
# workaround for https://github.com/actions/runner/issues/2033
349
+
- name: ownership workaround
350
+
run: git config --global --add safe.directory '*'
351
+
352
+
- name: run
353
+
run: ./configure.sh && make run
354
+
355
+
linux24-vanilla--stockdotnet6-and-newmono:
356
+
runs-on: ubuntu-24.04
357
+
container:
358
+
image: "ubuntu:24.04"
359
+
steps:
360
+
- uses: actions/checkout@v1
361
+
# can't use the option below because of error "Input 'submodules' not supported when falling back to download using the GitHub REST API. To create a local Git repository instead, add Git 2.18 or higher to the PATH."
362
+
# with:
363
+
# submodules: 'true'
364
+
365
+
- name: install sudo
366
+
run: apt update && apt install --yes sudo
367
+
- name: install all dependencies
368
+
run: sudo DEBIAN_FRONTEND=noninteractive apt install --yes git make curl dotnet6
369
+
- name: install last version of mono (Microsoft APT repositories)
# workaround for https://github.com/actions/runner/issues/2033
373
+
- name: ownership workaround
374
+
run: git config --global --add safe.directory '*'
375
+
376
+
- name: run
377
+
run: ./configure.sh && make run
378
+
379
+
linux24-vanilla--stockdotnet6-and-stockmono:
380
+
runs-on: ubuntu-24.04
381
+
container:
382
+
image: "ubuntu:24.04"
383
+
steps:
384
+
- uses: actions/checkout@v1
385
+
# can't use the option below because of error "Input 'submodules' not supported when falling back to download using the GitHub REST API. To create a local Git repository instead, add Git 2.18 or higher to the PATH."
# workaround for https://github.com/actions/runner/issues/2033
395
+
- name: ownership workaround
396
+
run: git config --global --add safe.directory '*'
397
+
398
+
- name: run
399
+
run: ./configure.sh && make run
400
+
401
+
linux24-vanilla--newmono-only:
402
+
runs-on: ubuntu-24.04
403
+
container:
404
+
image: "ubuntu:24.04"
405
+
steps:
406
+
- uses: actions/checkout@v1
407
+
# can't use the option below because of error "Input 'submodules' not supported when falling back to download using the GitHub REST API. To create a local Git repository instead, add Git 2.18 or higher to the PATH."
0 commit comments