comandy/.github/workflows/test.yml

51 lines
1.2 KiB
YAML
Raw Normal View History

2024-04-16 13:26:48 +09:00
name: test
on: [ push, pull_request ]
jobs:
test_ubuntu:
name: Run Make Test on Ubuntu 🧪
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Build Tools
run: |
sudo apt-get update
sudo apt-get install -y gcc make
- name: Setup NDK
uses: nttld/setup-ndk@v1
id: setup-ndk
with:
ndk-version: r26d
2024-04-16 13:34:53 +09:00
local-cache: true
2024-04-16 13:26:48 +09:00
- name: Setup Go Environment
uses: actions/setup-go@master
- name: Cache Downloaded Modules
uses: actions/cache@master
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.goos }}-${{ matrix.goarch }}-${{ hashFiles('**/go.sum') }}
2024-04-16 13:53:30 +09:00
- name: Test Build
2024-04-16 13:26:48 +09:00
env:
NDK_TOOLCHAIN: ${{ steps.setup-ndk.outputs.ndk-path }}
BUILD_MACHINE: linux
2024-04-16 13:47:44 +09:00
run: |
echo NDK path is $NDK_TOOLCHAIN
2024-04-16 13:54:45 +09:00
ls $NDK_TOOLCHAIN
2024-04-16 13:53:30 +09:00
make -e
- name: Build and Run Tests
env:
NDK_TOOLCHAIN: ${{ steps.setup-ndk.outputs.ndk-path }}
BUILD_MACHINE: linux
GOARCH: amd64
run: make -e runtest