move to submodule
This commit is contained in:
parent
a0ac6ed8ed
commit
3f2271f017
31
.github/github_pushback.sh
vendored
31
.github/github_pushback.sh
vendored
@ -1,31 +0,0 @@
|
|||||||
#! /bin/bash
|
|
||||||
|
|
||||||
mkdir -p ~/.ssh
|
|
||||||
ssh-keyscan -H pika-os.com >> ~/.ssh/known_hosts
|
|
||||||
ssh-keyscan -H git.pika-os.com >> ~/.ssh/known_hosts
|
|
||||||
#echo -e "Host git.pika-os.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
|
|
||||||
#echo -e "Host git.pika-os.com\n\tIdentityFile ~/.ssh/id_rsa\n\tStrictHostKeyChecking no\n" > ~/.ssh/config
|
|
||||||
#ssh-agent -a $SSH_AUTH_SOCK > /dev/null
|
|
||||||
#ssh-add - <<< "$1"
|
|
||||||
|
|
||||||
#export GIT_SSH_COMMAND="ssh -F ~/.ssh/config"
|
|
||||||
|
|
||||||
#ssh -o StrictHostKeyChecking=no -vT git@git.pika-os.com
|
|
||||||
#ssh -vT git@git.pika-os.com
|
|
||||||
|
|
||||||
# Commit changes to git
|
|
||||||
git config --global user.name 'Github Gitea Push Back Key - Cosmo'
|
|
||||||
git config --global user.email 'cosmo@pika-os.com'
|
|
||||||
#git config --global --add safe.directory /__w/gitea-pika-kernel-manager/gitea-pika-kernel-manager
|
|
||||||
|
|
||||||
git clone git@git.pika-os.com:custom-gui-packages/pika-kernel-manager
|
|
||||||
|
|
||||||
rm -rfv ./gitea-pika-kernel-manager/.git
|
|
||||||
cp -rfv ./pika-kernel-manager/.git ./gitea-pika-kernel-manager/
|
|
||||||
|
|
||||||
cd ./gitea-pika-kernel-manager
|
|
||||||
git add .
|
|
||||||
git commit -am"Github Mirror Push Back"
|
|
||||||
#git config pull.rebase true
|
|
||||||
#git pull
|
|
||||||
git push
|
|
11
.github/workflows/build-canaryv3.yml
vendored
11
.github/workflows/build-canaryv3.yml
vendored
@ -17,17 +17,6 @@ jobs:
|
|||||||
options: --privileged -it
|
options: --privileged -it
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Runner Origin Check
|
|
||||||
run: |
|
|
||||||
if [ "${{ secrets.RUNNER_ORIGIN }}" = "github" ]; then
|
|
||||||
exit 1
|
|
||||||
else
|
|
||||||
true
|
|
||||||
fi
|
|
||||||
env:
|
|
||||||
RUNNER_ORIGIN: ${{ secrets.RUNNER_ORIGIN }}
|
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install SSH key
|
- name: Install SSH key
|
||||||
|
11
.github/workflows/build-nestv3.yml
vendored
11
.github/workflows/build-nestv3.yml
vendored
@ -17,17 +17,6 @@ jobs:
|
|||||||
options: --privileged -it
|
options: --privileged -it
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Runner Origin Check
|
|
||||||
run: |
|
|
||||||
if [ "${{ secrets.RUNNER_ORIGIN }}" = "github" ]; then
|
|
||||||
exit 1
|
|
||||||
else
|
|
||||||
true
|
|
||||||
fi
|
|
||||||
env:
|
|
||||||
RUNNER_ORIGIN: ${{ secrets.RUNNER_ORIGIN }}
|
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install SSH key
|
- name: Install SSH key
|
||||||
|
41
.github/workflows/github-pushback.yml
vendored
41
.github/workflows/github-pushback.yml
vendored
@ -1,41 +0,0 @@
|
|||||||
name: Github Push back to gitea
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
Push:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: ghcr.io/pikaos-linux/pikaos-builder:nestv3
|
|
||||||
volumes:
|
|
||||||
- /proc:/proc
|
|
||||||
options: --privileged -it
|
|
||||||
|
|
||||||
steps:
|
|
||||||
|
|
||||||
- name: Runner Origin Check
|
|
||||||
run: |
|
|
||||||
if [ "${{ secrets.RUNNER_ORIGIN }}" = "github" ]; then
|
|
||||||
true
|
|
||||||
else
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
env:
|
|
||||||
RUNNER_ORIGIN: ${{ secrets.RUNNER_ORIGIN }}
|
|
||||||
|
|
||||||
- name: Install SSH key
|
|
||||||
uses: shimataro/ssh-key-action@v2
|
|
||||||
with:
|
|
||||||
key: ${{ secrets.GITEA_SSH_KEY }}
|
|
||||||
name: id_rsa
|
|
||||||
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
|
||||||
if_key_exists: replace
|
|
||||||
|
|
||||||
- name: Run
|
|
||||||
run: git clone https://github.com/PikaOS-Linux/gitea-pika-kernel-manager
|
|
||||||
|
|
||||||
- name: Run
|
|
||||||
run: ./gitea-pika-kernel-manager/.github/github_pushback.sh
|
|
11
.github/workflows/release-canaryv3.yml
vendored
11
.github/workflows/release-canaryv3.yml
vendored
@ -17,17 +17,6 @@ jobs:
|
|||||||
options: --privileged -it
|
options: --privileged -it
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Runner Origin Check
|
|
||||||
run: |
|
|
||||||
if [ "${{ secrets.RUNNER_ORIGIN }}" = "github" ]; then
|
|
||||||
exit 1
|
|
||||||
else
|
|
||||||
true
|
|
||||||
fi
|
|
||||||
env:
|
|
||||||
RUNNER_ORIGIN: ${{ secrets.RUNNER_ORIGIN }}
|
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install SSH key
|
- name: Install SSH key
|
||||||
|
11
.github/workflows/release-nestv3.yml
vendored
11
.github/workflows/release-nestv3.yml
vendored
@ -17,17 +17,6 @@ jobs:
|
|||||||
options: --privileged -it
|
options: --privileged -it
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Runner Origin Check
|
|
||||||
run: |
|
|
||||||
if [ "${{ secrets.RUNNER_ORIGIN }}" = "github" ]; then
|
|
||||||
exit 1
|
|
||||||
else
|
|
||||||
true
|
|
||||||
fi
|
|
||||||
env:
|
|
||||||
RUNNER_ORIGIN: ${{ secrets.RUNNER_ORIGIN }}
|
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install SSH key
|
- name: Install SSH key
|
||||||
|
@ -1,52 +0,0 @@
|
|||||||
{
|
|
||||||
"application_name": "PikaOS Kernel Manager",
|
|
||||||
"developer_name": "Cosmo",
|
|
||||||
"banner_text_no_internet": "Warning: No internet connection",
|
|
||||||
"banner_text_url_error": "Kernel Database URL Error: Please Restart!",
|
|
||||||
"loading_label_label": "Downloading Database...",
|
|
||||||
"kernel_branch_expander_row_subtitle": "Kernel Branch",
|
|
||||||
"browse_kernels_button_tooltip_text": "Browse Kernel for select branch",
|
|
||||||
"config_kernel_button_tooltip_text": "Configure Sched_EXT settings",
|
|
||||||
"config_kernel_button_tooltip_text_no_scx": "Currently running kernel doesn't support Sched-EXT",
|
|
||||||
"config_kernel_button_tooltip_text_no_scx_installed": "Your kernel supports Sched-EXT but the sched-ext-scx packages is not installed!\nInstall it, reboot, try again",
|
|
||||||
"null_checkbutton_label": "No branch selected",
|
|
||||||
"db_load_complete": "DB load complete!",
|
|
||||||
"db_downloading": "Downloading & Parsing package DB for",
|
|
||||||
"db_download_complete": "Download Complete!",
|
|
||||||
"db_init_script_run_p1": "Running",
|
|
||||||
"db_init_script_run_p2": "init script.",
|
|
||||||
"db_init_script_successful": "init script successful.",
|
|
||||||
"db_init_script_failed": "init script failed!",
|
|
||||||
"unknown": "Unknown",
|
|
||||||
"disabled": "Disabled",
|
|
||||||
"get_current_scheduler_sched_ext_detected": "sched_ext is detected, getting scx scheduler",
|
|
||||||
"kernel_badge_branch_label": "Kernel Branch",
|
|
||||||
"kernel_badge_latest_version_label": "Latest Stable Version",
|
|
||||||
"kernel_badge_running_version_label": "Running Version",
|
|
||||||
"kernel_badge_running_kernel_label": "Running Kernel",
|
|
||||||
"kernel_badge_running_sched_label": "Running Sched",
|
|
||||||
"kernel_main_label_label": "Available Kernel Packages",
|
|
||||||
"kernel_status_icon_tooltip_text": "Installed",
|
|
||||||
"kernel_install_button_label": "Install",
|
|
||||||
"kernel_install_button_tooltip_text": "Install this kernel",
|
|
||||||
"kernel_uninstall_button_label": "Uninstall",
|
|
||||||
"kernel_uninstall_button_tooltip_text": "Uninstall this kernel",
|
|
||||||
"kernel_install_dialog_heading": "Installing Kernel",
|
|
||||||
"kernel_install_dialog_ok_label": "OK",
|
|
||||||
"kernel_install_dialog_reboot_label": "Reboot Now (Optional)",
|
|
||||||
"kernel_install_dialog_body_successful": "Kernel installation was successful!",
|
|
||||||
"kernel_install_dialog_body_failed": "Kernel installation failed!",
|
|
||||||
"parse_loading_dialog_heading": "Please Wait!",
|
|
||||||
"parse_loading_dialog_body": "Loading Kernel Repo Data....",
|
|
||||||
"log_status_kernel_modify_successful": "Status: kernel modify Successful",
|
|
||||||
"log_status_kernel_modify_failed": "Status: kernel modify Failed",
|
|
||||||
"scx_sched_expander_row_subtitle": "Select Sched-EXT SCX Scheduler",
|
|
||||||
"sched_ext_main_label_label": "Sched-EXT Configuration Settings",
|
|
||||||
"sched_ext_apply_button_label": "Apply",
|
|
||||||
"sched_ext_cmd_status_dialog_heading_success": "Success!",
|
|
||||||
"sched_ext_cmd_status_dialog_body_success": "SCX has been set to",
|
|
||||||
"sched_ext_cmd_status_dialog_heading_failed": "Failed!",
|
|
||||||
"sched_ext_cmd_status_dialog_body_failed": "SCX couldn't be has been set to",
|
|
||||||
"sched_ext_null_checkbutton_label": "No Scheduler selected",
|
|
||||||
"installed": "Installed!"
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user