aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorXe Iaso <me@xeiaso.net>2024-12-22 13:32:33 -0500
committerXe Iaso <me@xeiaso.net>2024-12-22 13:32:33 -0500
commiteaf2e57548fb1966be3011eaa257a35b66034c46 (patch)
treea5ddc6c898f1e5f5ef6e4d291fc221379a05f3a9 /.github
parent28e8cde1e56bcf77be972d0304f989042419a2b0 (diff)
downloadx-eaf2e57548fb1966be3011eaa257a35b66034c46.tar.xz
x-eaf2e57548fb1966be3011eaa257a35b66034c46.zip
use alrest CI for most things
Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/actions-runner-update.yml4
-rw-r--r--.github/workflows/dependabot.yml4
-rw-r--r--.github/workflows/go-generate.yml7
3 files changed, 10 insertions, 5 deletions
diff --git a/.github/workflows/actions-runner-update.yml b/.github/workflows/actions-runner-update.yml
index dec9272..8cf5635 100644
--- a/.github/workflows/actions-runner-update.yml
+++ b/.github/workflows/actions-runner-update.yml
@@ -1,8 +1,8 @@
name: Regenerate actions-runner image
on:
- push:
- branches: [ "master" ]
+ # push:
+ # branches: [ "master" ]
schedule:
- cron: "0 0 1,8,15,22 * *"
diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml
index d760bf0..5544e98 100644
--- a/.github/workflows/dependabot.yml
+++ b/.github/workflows/dependabot.yml
@@ -10,8 +10,8 @@ permissions:
jobs:
run-custom-command:
- if: ${{ github.actor_id == '49699333' }}
- runs-on: ubuntu-latest
+ if: ${{ github.actor_id == '49699333' }} # Dependabot
+ runs-on: alrest-x
steps:
- uses: actions/checkout@v3
with:
diff --git a/.github/workflows/go-generate.yml b/.github/workflows/go-generate.yml
index 348ed2e..df77414 100644
--- a/.github/workflows/go-generate.yml
+++ b/.github/workflows/go-generate.yml
@@ -10,10 +10,15 @@ permissions:
jobs:
regenerate:
- runs-on: ubuntu-22.04
+ runs-on: alrest-x
steps:
- name: Clone code
uses: actions/checkout@v4
+
+ - name: build essential
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y build-essential
- uses: Homebrew/actions/setup-homebrew@master