Skip to content

Add package workflow #1

Add package workflow

Add package workflow #1

Workflow file for this run

name: build and test
on:
push:
branches: [ mob ]
jobs:
test-x86_64-linux:
runs-on: ubuntu-20.04
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Package (x86_64-linux)
run: ./configure --prefix=package && make install
# test-aarch64-osx:
# runs-on: macos-14
# timeout-minutes: 20
# steps:
# - uses: actions/checkout@v4
# - name: make & test tcc (aarch64-osx)
# run: ./configure && make && make test -k
#
# test-x86_64-win32:
# runs-on: windows-2019
# timeout-minutes: 20
# steps:
# - uses: actions/checkout@v4
# - name: make & test tcc (x86_64-win32)
# shell: cmd
# run: |
# set MSYS2_PATH_TYPE=inherit
# set MSYSTEM=MINGW64
# set CHERE_INVOKING=yes
# C:\msys64\usr\bin\bash -l -c "./configure && make && make test -k"