diff --git a/.github/build-canary-i386 b/.github/build-canary-i386 deleted file mode 100644 index 56a6051..0000000 --- a/.github/build-canary-i386 +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/.github/build-nest-i386 b/.github/build-nest-i386 deleted file mode 100644 index 56a6051..0000000 --- a/.github/build-nest-i386 +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/.github/release-canary-i386 b/.github/release-canary-i386 deleted file mode 100644 index 56a6051..0000000 --- a/.github/release-canary-i386 +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/.github/release-nest-i386 b/.github/release-nest-i386 deleted file mode 100644 index 56a6051..0000000 --- a/.github/release-nest-i386 +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/.github/workflows/build-canaryi386.yml b/.github/workflows/build-canaryi386.yml deleted file mode 100644 index 8996dc0..0000000 --- a/.github/workflows/build-canaryi386.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: PikaOS Package Build Only (Canary) (i386) - -on: - push: - branches: - - main - paths: - - '.github/build-canary-i386' - -jobs: - build: - runs-on: ubuntu-latest - container: - image: ghcr.io/pikaos-linux/pikaos-builder:canaryi386 - volumes: - - /proc:/proc - options: --privileged -it - - steps: - - uses: actions/checkout@v3 - - - name: Install SSH key - uses: shimataro/ssh-key-action@v2 - with: - key: ${{ vars.SSH_KEY }} - name: id_rsa - known_hosts: ${{ vars.KNOWN_HOSTS }} - if_key_exists: replace - - - name: Update APT Cache - run: apt-get update -y - - - name: Set Build Config - run: cp -vf ./pika-build-config/i386.sh ./pika-build-config.sh - - - name: Build Package - run: ./main.sh diff --git a/.github/workflows/build-nesti386.yml b/.github/workflows/build-nesti386.yml deleted file mode 100644 index 5cf59d5..0000000 --- a/.github/workflows/build-nesti386.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: PikaOS Package Build Only (i386) - -on: - push: - branches: - - main - paths: - - '.github/build-nest-i386' - -jobs: - build: - runs-on: ubuntu-latest - container: - image: ghcr.io/pikaos-linux/pikaos-builder:nesti386 - volumes: - - /proc:/proc - options: --privileged -it - - steps: - - uses: actions/checkout@v3 - - - name: Install SSH key - uses: shimataro/ssh-key-action@v2 - with: - key: ${{ vars.SSH_KEY }} - name: id_rsa - known_hosts: ${{ vars.KNOWN_HOSTS }} - if_key_exists: replace - - - name: Update APT Cache - run: apt-get update -y - - - name: Set Build Config - run: cp -vf ./pika-build-config/i386.sh ./pika-build-config.sh - - - name: Build Package - run: ./main.sh diff --git a/.github/workflows/release-canaryi386.yml b/.github/workflows/release-canaryi386.yml deleted file mode 100644 index 5b7f7c3..0000000 --- a/.github/workflows/release-canaryi386.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: PikaOS Package Build & Release (Canary) (i386) - -on: - push: - branches: - - main - paths: - - '.github/release-canary-i386' - -jobs: - build: - runs-on: ubuntu-latest - container: - image: ghcr.io/pikaos-linux/pikaos-builder:canaryi386 - volumes: - - /proc:/proc - options: --privileged -it - - steps: - - uses: actions/checkout@v3 - - - name: Install SSH key - uses: shimataro/ssh-key-action@v2 - with: - key: ${{ vars.SSH_KEY }} - name: id_rsa - known_hosts: ${{ vars.KNOWN_HOSTS }} - if_key_exists: replace - - - name: Update APT Cache - run: apt-get update -y - - - name: Set Build Config - run: cp -vf ./pika-build-config/i386.sh ./pika-build-config.sh - - - name: Build Package - run: ./main.sh - - - name: Release Package - run: ./release.sh diff --git a/.github/workflows/release-nesti386.yml b/.github/workflows/release-nesti386.yml deleted file mode 100644 index 839db27..0000000 --- a/.github/workflows/release-nesti386.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: PikaOS Package Build & Release (i386) - -on: - push: - branches: - - main - paths: - - '.github/release-nest-i386' - -jobs: - build: - runs-on: ubuntu-latest - container: - image: ghcr.io/pikaos-linux/pikaos-builder:nesti386 - volumes: - - /proc:/proc - options: --privileged -it - - steps: - - uses: actions/checkout@v3 - - - name: Install SSH key - uses: shimataro/ssh-key-action@v2 - with: - key: ${{ vars.SSH_KEY }} - name: id_rsa - known_hosts: ${{ vars.KNOWN_HOSTS }} - if_key_exists: replace - - - name: Update APT Cache - run: apt-get update -y - - - name: Set Build Config - run: cp -vf ./pika-build-config/i386.sh ./pika-build-config.sh - - - name: Build Package - run: ./main.sh - - - name: Release Package - run: ./release.sh