diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ddcac09 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml,toml,js}] +indent_size = 2 diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..ae992e3 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..798f734 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,28 @@ +name: CI + +on: + push: + branches: + - "main" + pull_request: + branches: + - "main" + workflow_dispatch: + +jobs: + build: + name: Build + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2.3.4 + + - name: Get sample PKGBUILD + run: wget https://github.com/official-human/nonicons-font/raw/main/PKGBUILD + + - name: Test actions + uses: ./ + with: + updpkgsums: true + srcinfo: true diff --git a/Dockerfile b/Dockerfile index af66730..dd247ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,17 @@ -FROM alpine:3.10 +# Base image +FROM docker.io/library/archlinux:base-devel +# Install dependencies +RUN pacman -Syu --needed --noconfirm pacman-contrib namcap + +# Setup user +RUN useradd -m builder \ + usermod -aG wheel builder \ + echo 'wheel ALL=(ALL:ALL) ALL' >> /etc/sudoers + +# Copy files COPY LICENSE README.md / - COPY entrypoint.sh /entrypoint.sh +# Set entrypoint ENTRYPOINT ["/entrypoint.sh"] diff --git a/action.yml b/action.yml index 4353abb..475f35e 100644 --- a/action.yml +++ b/action.yml @@ -1,12 +1,37 @@ -name: 'Container Action Template' -description: 'Get started with Container actions' -author: 'GitHub' -inputs: - myInput: - description: 'Input to use' - default: 'world' +# https://help.github.com/en/articles/metadata-syntax-for-github-actions +name: "Arch Linux's package action" +description: "GitHub Action to run Arch Linux's package tools" +author: "datakrama" +branding: + icon: "package" + color: "green" + +inputs: + path: + description: "Location for this action to run" + default: $GITHUB_WORKSPACE + required: false + updpkgsums: + description: "Update checksums on PKGBUILD" + default: "false" + required: false + srcinfo: + description: "Generate new .SRCINFO" + default: "false" + required: false + flags: + description: "Extra flags for makepkg" + default: "-cfs --noconfirm" + required: false + namcap: + description: "Validate package with namcap" + default: "true" + required: false + runs: - using: 'docker' - image: 'Dockerfile' + using: "docker" + image: "Dockerfile" args: - - ${{ inputs.myInput }} + - ${{ inputs.updpkgsums }} + - ${{ inputs.flags }} + - ${{ inputs.namcap }} diff --git a/entrypoint.sh b/entrypoint.sh index 3b8cd2d..c081f5d 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,3 +1,23 @@ #!/bin/sh -l -echo "hello $1" +cd $INPUT_PATH + +if [[ $INPUT_UPDPKGSUMS == true ]]; then + echo "Update checksums on PKGBUILD" + updpkgsums + git diff PKGBUILD +fi + +if [[ $INPUT_SRCINFO == true ]]; then + echo "Generate new .SRCINFO based on PKGBUILD" + sudo -u builder makepkg --printsrcinfo > .SRCINFO + git diff .SRCINFO +fi + +echo "Run makepkg with flags" +sudo -u builder makepkg $INPUT_FLAGS + +if [[ $INPUT_NAMCAP == true ]]; then + echo "Validate PKGBUILD with namcap" + namcap -i PKGBUILD +fi