Fill package with source code and add dependencies #1
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: Continuous Integration | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/${{ github.actor }}/${{ github.repository }}:latest | |
steps: | |
- uses: actions/checkout@v4 | |
id: checkout | |
name: Setup checkout | |
- run: git config --global --add safe.directory '*' | |
- run: | | |
bdep init -C @gcc cc config.cxx=g++ -- ?sys:gtk4-devel ?sys:glib2-devel ?sys:appstream-devel --sys-no-stub --sys-install | |
bdep update | |
bdep test | |
bpkg bindist -d ../libadwaita-gcc/ libadwaita | |
- uses: actions/upload-artifact@v4 | |
id: upload-artifact | |
with: | |
path: '/github/home/rpmbuild/RPMS/x86_64/**' |