CI #88
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
# Controls when the workflow will run | |
on: | |
schedule: | |
- cron: '0 0 * * WED' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
# This workflow contains a single job called "build" | |
init: | |
runs-on: ubuntu-latest | |
container: ghcr.io/kreatolinux/builder | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Initialize chkupd | |
run: | | |
rm -rf src | |
git clone https://github.com/kreatolinux/src | |
cd src | |
sed -i s/stable/master/g Makefile | |
nimble install cligen fuzzy libsha -y | |
./build.sh -d -p "chkupd" | |
mv out/chkupd /tmp/ | |
cd .. | |
rm -rf src | |
cd /tmp/ | |
sudo ./chkupd cleanUp -v | |
./chkupd generateJson --repo="$GITHUB_WORKSPACE" --output="/tmp/out1.json" | |
JSON=$(cat /tmp/out1.json) | |
echo "::set-output name=matrix::${JSON//'%'/'%25'}" | |
- uses: actions/upload-artifact@master | |
with: | |
name: chkupd-bin | |
path: /tmp/chkupd | |
#- name: | |
#- name: Check all packages against Arch Repositories | |
#run: | | |
#export DOCKER_DEFAULT_PLATFORM=linux/amd64 | |
#cd /tmp/ | |
#./chkupd checkAll --jsonPath=/tmp/chkupd.json --backend="arch" --repo="$GITHUB_WORKSPACE" | |
#echo "# Arch check results" >> /tmp/chkupd.md | |
#./out/chkupd jsonToMd /tmp/chkupd.json >> /tmp/chkupd.md | |
#rm -rf chkupd | |
#- name: Create Pull Request | |
#uses: peter-evans/[email protected] | |
#with: | |
#commit-message: "[CI] Automated update by chkupd" | |
build: | |
needs: init | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: ${{fromJson(needs.init.outputs.matrix)}} | |
steps: | |
- run: echo ${{ matrix.package }} | |
- run: echo ${{ matrix.repository }} |