Skip to content

Commit

Permalink
Don't run upx on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
braheezy committed Apr 12, 2024
1 parent 2f2a6b0 commit 514bbb0
Showing 1 changed file with 3 additions and 35 deletions.
38 changes: 3 additions & 35 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
name: ci

on:
push:
workflow_dispatch:

"on":
push: null
workflow_dispatch: null
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
build-windows:
runs-on: windows-latest
Expand All @@ -16,31 +13,20 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Go
uses: actions/setup-go@v4
with:
go-version: "1.21"

- name: Install dependencies
run: go get ./...

- name: Build
run: go build -ldflags="-s -w" -gcflags=all="-l -B" -trimpath -buildvcs=false -v .

- name: Run UPX
uses: crazy-max/ghaction-upx@v3
with:
files: goqoa.exe

- name: Go Test
run: go test -v ./...

- uses: actions/upload-artifact@v4
with:
name: windows
path: goqoa.exe

build-mac:
runs-on: macos-latest
env:
Expand All @@ -49,26 +35,20 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Go
uses: actions/setup-go@v4
with:
go-version: "1.21"

- name: Install dependencies
run: go get ./...

- name: Build
run: go build -ldflags="-s -w" -gcflags=all="-l -B" -trimpath -buildvcs=false -o goqoa-mac -v .

- name: Go Test
run: go test -v ./...

- uses: actions/upload-artifact@v4
with:
name: mac
path: goqoa-mac

build-linux:
runs-on: ubuntu-latest
env:
Expand All @@ -77,45 +57,36 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Go
uses: actions/setup-go@v4
with:
go-version: "1.21"

- name: Install dependencies
run: |
go get ./...
sudo apt-get update
sudo apt-get install -y libasound2-dev
- name: Build
run: |
go build -ldflags="-s -w" -gcflags=all="-l -B" -trimpath -buildvcs=false -o goqoa-linux -v .
upx --best goqoa-linux
- name: Go Test
run: go test -v ./...

- name: Cache large spec pack
uses: actions/cache@v3
with:
key: qoa_test_samples_2023_02_18.zip
path: qoa_test_samples_2023_02_18.zip

- name: Download large spec pack
run: wget --timestamping https://qoaformat.org/samples/qoa_test_samples_2023_02_18.zip

- name: Spec Test
run: |
sudo cp goqoa-linux /usr/bin/goqoa
bash check_spec.sh
- uses: actions/upload-artifact@v4
with:
name: linux
path: goqoa-linux

release:
if: startsWith(github.ref, 'refs/tags/')
needs:
Expand All @@ -124,14 +95,11 @@ jobs:
- build-linux
permissions:
contents: write

runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- uses: actions/download-artifact@v4

- name: Release
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 514bbb0

Please sign in to comment.