Skip to content

cli: flush stdout after line buffering #17

cli: flush stdout after line buffering

cli: flush stdout after line buffering #17

Workflow file for this run

# .github/workflows/c-cpp.yml: workflow file for github action CI
# Copyright (C) 2023 Guoxin "7Ji" Pu <pugokushin@gmail.com>
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
# You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Static build for x86_64
run: make fresh STATIC=1
- name: Rename for x86_64
run: mv YAopenvfD YAopenvfD-x86_64
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.2
with:
name: static-build
path: YAopenvfD-*
if-no-files-found: error
retention-days: 0