Replies: 3 comments 10 replies
-
|
Thanks for showing interest
Some more limitations, that should be part of the readme / implemented This runner doesn't support
For windows containers are no noticeable limitations, I'm aware of except what applies to linux containers for GitHub Actions.
Use upload / download artifacts actions for this, they should work. There are possible hacks available, but they don't improve reliability.
This can take a while for me to document this in an easier to setup form I think a guided runner setup with multiple choice should be implemented that setups everything for you. e.g. |
Beta Was this translation helpful? Give feedback.
-
|
Hey @xlazom00, Do you still want to try windows containers? I now have finished my initial improved setup assistant for runner registration
Try to queue a job e.g. on: push
jobs:
stress-test:
runs-on: windows-container
container: mcr.microsoft.com/dotnet/aspnet:9.0-nanoserver-ltsc2022
steps:
- run: echo Test
- uses: actions/github-script@v7
with:
script: |
console.log("Hello World2")Enjoy your windows container runner (with the GitHub Actions compatible subset of Gitea Actions) You need to whitelist the runner binary in your Windows Firewall by either interactive prompt or manually adding a rule to allow all tcp in ports for the runner application. Please come back to me if you see job failures including the job (Gitea web ui) and the runner log (the console output of the runner) Supporting Gitea Actions Features here could be looked into, but nothing to share for now. You can then look at the |
Beta Was this translation helpful? Give feedback.
-
|
Btw |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Can you plz write manal how to setup runner.server with gitea-actions-runner on windows
And what limitations do we have right now ?
I want to use windows docker with windows containers
If I can pass data between jobs. I will need to build application and pass it to another docker image to test it
Thx
Beta Was this translation helpful? Give feedback.
All reactions