2024-07-07 17:24:22 +08:00
|
|
|
name: Build Test
|
2022-06-07 10:24:26 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-06-07 13:08:44 +08:00
|
|
|
- name: chmod
|
2024-07-07 17:24:22 +08:00
|
|
|
run: |
|
2024-07-07 17:24:36 +08:00
|
|
|
chmod 777 configure
|
|
|
|
echo "Set permission Done!"
|
2022-06-07 10:24:26 +08:00
|
|
|
- name: configure
|
|
|
|
run: ./configure
|
|
|
|
- name: make
|
|
|
|
run: make
|