2024-12-17 11:06:23 +09:00
|
|
|
name: Tests
|
2024-10-17 00:18:20 +09:00
|
|
|
|
|
|
|
on:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2024-12-17 11:06:23 +09:00
|
|
|
name: Go tests
|
2024-10-17 00:18:20 +09:00
|
|
|
runs-on: ubuntu-latest
|
2024-12-06 03:34:13 +09:00
|
|
|
container:
|
|
|
|
image: node:16-bookworm-slim
|
2024-10-17 00:18:20 +09:00
|
|
|
steps:
|
2024-12-06 03:34:13 +09:00
|
|
|
- name: Get dependencies
|
|
|
|
run: >-
|
|
|
|
echo 'deb http://deb.debian.org/debian bookworm-backports main' >> /etc/apt/sources.list.d/backports.list &&
|
|
|
|
apt-get update &&
|
|
|
|
apt-get install -y
|
2024-12-16 15:57:00 +09:00
|
|
|
acl
|
2024-12-06 03:34:13 +09:00
|
|
|
git
|
|
|
|
gcc
|
|
|
|
pkg-config
|
|
|
|
libwayland-dev
|
|
|
|
wayland-protocols/bookworm-backports
|
|
|
|
libxcb1-dev
|
|
|
|
libacl1-dev
|
|
|
|
if: ${{ runner.os == 'Linux' }}
|
|
|
|
|
2024-10-17 00:18:20 +09:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Setup go
|
|
|
|
uses: https://github.com/actions/setup-go@v5
|
|
|
|
with:
|
|
|
|
go-version: '>=1.23.0'
|
|
|
|
|
2024-12-06 03:34:13 +09:00
|
|
|
- name: Go generate
|
2024-10-17 00:18:20 +09:00
|
|
|
run: >-
|
2024-12-06 03:34:13 +09:00
|
|
|
go generate ./...
|
2024-10-17 00:18:20 +09:00
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: >-
|
|
|
|
go test ./...
|
|
|
|
|
2024-12-18 19:57:03 +09:00
|
|
|
- name: Build for test
|
|
|
|
run: FORTIFY_VERSION='${{ github.ref_name }}' ./dist/release.sh
|
|
|
|
|
|
|
|
- name: Upload test build
|
|
|
|
uses: https://gitea.com/actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: "dist/fortify-${{ github.ref_name }}.tar.gz"
|
|
|
|
path: "dist/fortify-${{ github.ref_name }}.tar.gz"
|
|
|
|
retention-days: 1
|