diff --git a/.github/workflows/release-dev-pro.yml b/.github/workflows/release-dev-pro.yml index 857c96b..407950e 100644 --- a/.github/workflows/release-dev-pro.yml +++ b/.github/workflows/release-dev-pro.yml @@ -11,34 +11,52 @@ permissions: jobs: build: - name: "build" strategy: matrix: - go: [stable] - os: - - ubuntu-latest - - macos-latest - arch: - - arm64 - - amd64 - runs-on: ${{ matrix.os }} + targets: + - name: linux-amd64 + runner: ubuntu-latest + goos: linux + goarch: amd64 + - name: linux-arm64 + runner: ubuntu-latest + goos: linux + goarch: arm64 + goenvs: CC=aarch64-linux-gnu-gcc + preinstall: sudo apt install -y gcc-aarch64-linux-gnu + - name: darwin-amd64 + runner: macos-latest + goos: darwin + goarch: amd64 + - name: darwin-arm64 + runner: macos-latest + goos: darwin + goarch: arm64 + # goenvs: CC=oa64-clang + name: ${{ matrix.targets.name }} + runs-on: ${{ matrix.targets.runner }} env: GOPRIVATE: "github.com/humanlogio/humanlog-pro" GH_ACCESS_TOKEN_FOR_HUMANLOGPRO: ${{ secrets.GH_ACCESS_TOKEN_FOR_HUMANLOGPRO }} - GOARCH: ${{ matrix.arch }} CGO_ENABLED: 1 + GOBIN: /usr/local/bin/ steps: - name: Set up Go 1 uses: actions/setup-go@v5 with: - go-version: ${{ matrix.go }} + go-version: stable cache: true - uses: actions/checkout@v3 with: fetch-depth: 0 + - run: ${{ matrix.targets.preinstall }} + if: ${{ matrix.targets.preinstall != '' }} - run: git config --global --add safe.directory '*' - run: git config --global url.https://$GH_ACCESS_TOKEN_FOR_HUMANLOGPRO@github.com/.insteadOf https://github.com/ - run: go install github.com/goware/modvendor@latest - run: go mod vendor - run: modvendor -copy="**/*.a **/*.h" -v - - run: go build -tags pro -o /tmp/humanlog-${{ matrix.os }}-${{ matrix.arch }} ./cmd/humanlog + - run: ${{ matrix.targets.goenvs }} go build -tags pro -o /tmp/humanlog-${{ matrix.targets.goos }}-${{ matrix.targets.goarch }} ./cmd/humanlog + env: + GOOS: ${{ matrix.targets.goos }} + GOARCH: ${{ matrix.targets.goarch }} diff --git a/.github/workflows/release-dev.yml b/.github/workflows/release-dev.yml index 0f39dbc..608fbc9 100644 --- a/.github/workflows/release-dev.yml +++ b/.github/workflows/release-dev.yml @@ -10,9 +10,49 @@ permissions: contents: write jobs: + build: + name: "build" + strategy: + matrix: + go: [stable] + os: + - ubuntu-latest + - macos-latest + arch: + - arm64 + - amd64 + runs-on: ${{ matrix.os }} + env: + GOPRIVATE: "github.com/humanlogio/humanlog-pro" + GH_ACCESS_TOKEN_FOR_HUMANLOGPRO: ${{ secrets.GH_ACCESS_TOKEN_FOR_HUMANLOGPRO }} + GOARCH: ${{ matrix.arch }} + steps: + - name: Set up Go 1 + uses: actions/setup-go@v5 + with: + go-version: ${{ matrix.go }} + cache: true + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - run: git config --global --add safe.directory '*' + - run: git config --global url.https://$GH_ACCESS_TOKEN_FOR_HUMANLOGPRO@github.com/.insteadOf https://github.com/ + - run: git fetch --force --tags + - run: echo "${HOME}/.humanlog/bin" >> $GITHUB_PATH + - run: curl https://humanlog.dev/install_apictl.sh | bash + - run: go install github.com/goware/modvendor@latest + - run: go mod vendor + - run: modvendor -copy="**/*.a **/*.h" -v + - run: go + env: + + + create_a_dev_release: name: create a dev release runs-on: ubuntu-latest + container: + image: ghcr.io/goreleaser/goreleaser-cross:v1.23.2 env: GOPRIVATE: "github.com/humanlogio/humanlog-pro" GH_ACCESS_TOKEN_FOR_HUMANLOGPRO: ${{ secrets.GH_ACCESS_TOKEN_FOR_HUMANLOGPRO }}