Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
acj committed Oct 31, 2024
1 parent 393d329 commit 527127d
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# branches: [ main ]
#pull_request:
# branches: [ main ]
workflow_dispatch:

jobs:
Expand All @@ -26,7 +26,7 @@ jobs:
uses: actions/setup-go@v5
with:
cache: false
go-version: "1.22"
go-version: "1.23"

- name: Build
run: go build
Expand Down
36 changes: 29 additions & 7 deletions .github/workflows/deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Build dependencies

on:
push:
branches: [ main ]
paths:
- 'deps/**'
pull_request:
branches: [ main ]
paths:
- 'deps/**'
# branches: [ main ]
# paths:
# - 'deps/**'
#pull_request:
# branches: [ main ]
# paths:
# - 'deps/**'
workflow_dispatch:

jobs:
Expand All @@ -33,6 +33,17 @@ jobs:
git status
git diff
- name: Install Go
uses: actions/setup-go@v5
with:
cache: false
go-version: "1.23"

- name: Build and test lilliput with the new deps
run: |
go build
go test -v
- name: Compress deps
run: tar -czf deps.tar.gz deps/linux

Expand Down Expand Up @@ -65,6 +76,17 @@ jobs:
git status
git diff
- name: Install Go
uses: actions/setup-go@v5
with:
cache: false
go-version: "1.23"

- name: Build and test lilliput with the new deps
run: |
go build
go test -v
- name: Compress deps
run: tar -czf deps.tar.gz deps/osx

Expand Down

0 comments on commit 527127d

Please sign in to comment.