26 lines
314 B
YAML
26 lines
314 B
YAML
language: c
|
|
|
|
dist: focal
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- sourceline: 'ppa:tkchia/build-ia16'
|
|
packages:
|
|
- gcc-ia16-elf
|
|
- nasm
|
|
- upx
|
|
update: true
|
|
|
|
before_install:
|
|
- echo "before_install"
|
|
|
|
install:
|
|
- ./ci_build.sh
|
|
|
|
before_script:
|
|
- echo "before_script"
|
|
|
|
script:
|
|
- ./ci_test.sh
|