Sanity check: CNVM resources must have a host
section
#7663
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: Packaging | |
on: | |
pull_request: | |
branches: | |
- main | |
- "[0-9]+.[0-9]+" | |
types: [opened, synchronize, reopened] | |
env: | |
DEV: true | |
SNAPSHOT: true | |
PLATFORMS: linux/amd64 | |
GOPATH: /home/runner/go | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
package_beat: | |
name: Package Cloudbeat | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 40 | |
strategy: | |
fail-fast: false | |
matrix: | |
types: [tar.gz, docker] | |
steps: | |
- name: Free Disk Space (Ubuntu) | |
uses: jlumbroso/free-disk-space@main | |
with: | |
tool-cache: false | |
android: true | |
dotnet: true | |
haskell: true | |
large-packages: false | |
docker-images: true | |
swap-storage: true | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Setup GO (with caching) | |
uses: magnetikonline/action-golang-cache@v5 | |
with: | |
go-version-file: .go-version | |
- name: Init Hermit | |
run: ./bin/hermit env -r >> $GITHUB_ENV | |
- name: Packaging | |
run: | | |
mage -v package | |
env: | |
TYPES: ${{ matrix.types }} |