Skip to content

linux-ek 6.8.1-1

linux-ek 6.8.1-1 #87

Workflow file for this run

name: PKGBUILD CI
on:
push:
workflow_dispatch:
jobs:
build_with_gcc_x86_64:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Makepkg Build and Check
id: makepkg
uses: edlanglois/[email protected]
with:
pkgdir: "gcc-x86-64-actiondir"
namcapDisable: 1
makepkgArgs: "--skippgpcheck --noconfirm -s"
- name: Release
uses: ncipollo/[email protected]
with:
allowUpdates: true
tag: "6.8.1-1-gcc-x86-64"
commit: master
artifacts: "./*/*.zst"
token: ${{ secrets.GITHUB_TOKEN }}
build_with_llvm_lto_x86_64:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Makepkg Build and Check
id: makepkg
uses: edlanglois/[email protected]
with:
pkgdir: "llvm-lto-x86-64-actiondir"
namcapDisable: 1
makepkgArgs: "--skippgpcheck --noconfirm -s"
- name: Release
uses: ncipollo/[email protected]
with:
allowUpdates: true
tag: "6.8.1-1-llvm-lto-x86-64"
commit: master
artifacts: "./*/*.zst"
token: ${{ secrets.GITHUB_TOKEN }}
build_with_gcc_x86_64_v3:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Makepkg Build and Check
id: makepkg
uses: edlanglois/[email protected]
with:
pkgdir: "gcc-x86-64-v3-actiondir"
namcapDisable: 1
makepkgArgs: "--skippgpcheck --noconfirm -s"
- name: Release
uses: ncipollo/[email protected]
with:
allowUpdates: true
tag: "6.8.1-1-gcc-x86-64-v3"
commit: master
artifacts: "./*/*.zst"
token: ${{ secrets.GITHUB_TOKEN }}
build_with_llvm_lto_x86_64_v3:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Makepkg Build and Check
id: makepkg
uses: edlanglois/[email protected]
with:
pkgdir: "llvm-lto-x86-64-v3-actiondir"
namcapDisable: 1
makepkgArgs: "--skippgpcheck --noconfirm -s"
- name: Release
uses: ncipollo/[email protected]
with:
allowUpdates: true
tag: "6.8.1-1-llvm-lto-x86-64-v3"
commit: master
artifacts: "./*/*.zst"
token: ${{ secrets.GITHUB_TOKEN }}