test https://github.com/xhd2015/xgo/issues/194 #3
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: Custom Test | |
on: | |
push: | |
branches: [ "test-issue-194" ] | |
workflow_dispatch: | |
inputs: | |
dummy: | |
default: nothing | |
# 'gin-gonic/gin' ok | |
# 'fatedier/frp' cannot pass even with go? need to verify | |
# | |
# NOTE: use serially job to avoid 'Job Cancelled' which could | |
# possible be due to memory exhaust | |
jobs: | |
test-with-xgo: | |
runs-on: macos-latest | |
timeout-minutes: 360 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: xgo | |
- name: Prepare Utility Scripts | |
run: | | |
cat > util.sh <<'EOF' | |
function record_exit_code { | |
local exit_code=$? | |
echo "exit code: $exit_code" | |
echo "$exit_code" > test-exit-code.txt | |
} | |
trap 'record_exit_code' EXIT | |
EOF | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
- name: Install Xgo Locally | |
run: | | |
cd xgo | |
go install ./cmd/xgo | |
xgo exec --reset-instrument --log-debug go version | |
xgo revision | |
- name: Dep check | |
run: | | |
go install github.com/xhd2015/go-inspect/cmd/depcheck@latest | |
cd xgo/runtime/test/issue_194 | |
depcheck ./ | |
- name: Test cusotm | |
run: | | |
source util.sh | |
cd xgo/runtime/test/issue_194 | |
go test -v -run TestUserHandler_CreateUser || true | |
xgo test -v -run TestUserHandler_CreateUser || true |