Skip to content

Commit

Permalink
Hopefully fix github actions again
Browse files Browse the repository at this point in the history
  • Loading branch information
NHAS committed Jan 31, 2025
1 parent 3d5d2f0 commit ebfe7bc
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 5 deletions.
33 changes: 29 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,38 @@ on:
push:
branches: [ "main" ]
tags: [ 'v*.*.*' ]
workflow_run:
workflows: ["Testing RSSH"]
types: [completed]
conclusion: success

jobs:
e2e_tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23.1"

- name: Update repos
run: sudo apt update

- name: Install mingw for windows dll tests
run: sudo apt install -y gcc-mingw-w64

- name: Make integration tests
run: yes | make e2e

- name: Run tests
working-directory: e2e
run: ./e2e

build:
needs: e2e_tests
runs-on: ubuntu-latest
strategy:
fail-fast: true
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ require (
golang.org/x/net v0.34.0
golang.org/x/sys v0.29.0
gorm.io/gorm v1.25.12
gvisor.dev/gvisor v0.0.0-20250130013701-88ba1d0d00fa
gvisor.dev/gvisor@go v0.0.0-20250130174428-e0435b9a53ea
)

require (
Expand Down

0 comments on commit ebfe7bc

Please sign in to comment.