drop pkg/logger and use slog #1114
Workflow file for this run
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 | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
build-melange: | |
name: Build melange and add to artifact cache | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version: '1.21' | |
check-latest: true | |
- name: build | |
run: | | |
make melange | |
- uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 | |
with: | |
name: melange-${{ github.run_id }} | |
path: ${{ github.workspace }}/melange | |
retention-days: 1 | |
build-packages: | |
name: Build packages | |
needs: | |
- build-melange | |
# TODO: Set up a larger runner for this. | |
runs-on: ubuntu-latest | |
# This is a list of packages which covers basic and exotic uses of | |
# the built-in pipelines. Goal is to balance efficiency while also | |
# exercising Melange with real-world package builds. | |
# Feel free to add additional packages to this matrix which exercise | |
# Melange in new ways (e.g. new pipelines, etc.) | |
strategy: | |
fail-fast: false | |
matrix: | |
package: | |
- hello-wolfi | |
- glibc | |
- tini | |
- lzo | |
- bubblewrap | |
- gdk-pixbuf | |
- gitsign | |
- guac | |
- mdbook | |
- s3cmd | |
- perl-yaml-syck | |
- xmlto | |
- ncurses | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
repository: wolfi-dev/os | |
- uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0 | |
with: | |
name: melange-${{ github.run_id }} | |
path: ${{ github.workspace }}/.melange-dir | |
run-id: ${{ github.run_id }} | |
- run: | | |
sudo mv ${{ github.workspace }}/.melange-dir/melange /usr/bin/melange | |
sudo chmod a+x /usr/bin/melange | |
melange version | |
- run: | | |
sudo apt-get -y install bubblewrap | |
- run: | | |
make MELANGE="sudo melange" BUILDWORLD="no" package/${{ matrix.package }} |