Skip to content
Merged

Dev #41

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 0 additions & 46 deletions .github/workflows/build-debug.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
name: Build
name: Build for x86_64

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: write

jobs:
build:

runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install LLVM
run: sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
Expand All @@ -33,29 +37,23 @@ jobs:
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Wrapper.x86_64.${{ steps.vars.outputs.sha_short }}
include-hidden-files: true
path: |
rootfs
wrapper
wrapper-rootless
compose.yaml
entrypoint.sh
Dockerfile

- name: Create Release Zip File
run: zip -r Wrapper.x86_64.${{ steps.vars.outputs.sha_short }}.zip rootfs/ wrapper Dockerfile
run: zip -r Wrapper.x86_64.latest.zip rootfs/ wrapper wrapper-rootless Dockerfile compose.yaml entrypoint.sh

- name: Create Release
- name: Update Tag
run: |
git tag -f wrapper.x86_64.latest
git push origin wrapper.x86_64.latest --force

- name: Create or Update Release
uses: softprops/action-gh-release@v2
with:
files: Wrapper.x86_64.${{ steps.vars.outputs.sha_short }}.zip
body: ${{ github.event.head_commit.message }}
name: Wrapper.x86_64.${{ steps.vars.outputs.sha_short }}
tag_name: Wrapper.x86_64.${{ steps.vars.outputs.sha_short }}
files: Wrapper.x86_64.latest.zip
body: |
Latest build for x86_64.
Commit: ${{ github.sha }}
Message: ${{ github.event.head_commit.message }}
name: Wrapper.x86_64.latest
tag_name: wrapper.x86_64.latest
make_latest: true


overwrite: true
48 changes: 0 additions & 48 deletions .github/workflows/wrapper-qemu.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ dkms.conf
rootfs/
.vscode/
wrapper
wrapper-rootless
rootfs/system/bin/linker64
build/
android-ndk-r23b/
Expand Down
Loading