fix: move env to makepkg.conf

This commit is contained in:
Tobias Reisinger 2020-07-18 00:19:31 +02:00
parent 9eb133f582
commit 8d90970f7e

View file

@ -12,36 +12,26 @@ steps:
- name: makepkg-core - name: makepkg-core
image: serguzim/emgauwa-packager image: serguzim/emgauwa-packager
commands: commands:
- export CFLAGS="-marm -mfpu=vfp -march=armv6zk+fp -mcpu=arm1176jzf-s -mtune=arm1176jzf-s"
- export MAKEFLAGS="-j$(grep -c ^processor /proc/cpuinfo)"
- cd core/ - cd core/
- makepkg -s -f --cleanbuild --noconfirm - makepkg -s -f --cleanbuild --noconfirm
- name: makepkg-core-testing - name: makepkg-core-testing
image: serguzim/emgauwa-packager image: serguzim/emgauwa-packager
commands: commands:
- export CFLAGS="-marm -mfpu=vfp -march=armv6zk+fp -mcpu=arm1176jzf-s -mtune=arm1176jzf-s"
- export MAKEFLAGS="-j$(grep -c ^processor /proc/cpuinfo)"
- cd core-testing/ - cd core-testing/
- makepkg -s -f --cleanbuild --noconfirm - makepkg -s -f --cleanbuild --noconfirm
- name: makepkg-controller - name: makepkg-controller
image: serguzim/emgauwa-packager image: serguzim/emgauwa-packager
commands: commands:
- export CFLAGS="-marm -mfpu=vfp -march=armv6zk+fp -mcpu=arm1176jzf-s -mtune=arm1176jzf-s"
- export MAKEFLAGS="-j$(grep -c ^processor /proc/cpuinfo)"
- cd controller/ - cd controller/
- makepkg -s -f --cleanbuild --noconfirm - makepkg -s -f --cleanbuild --noconfirm
- name: makepkg-controller-testing - name: makepkg-controller-testing
image: serguzim/emgauwa-packager image: serguzim/emgauwa-packager
commands: commands:
- export CFLAGS="-marm -mfpu=vfp -march=armv6zk+fp -mcpu=arm1176jzf-s -mtune=arm1176jzf-s"
- export MAKEFLAGS="-j$(grep -c ^processor /proc/cpuinfo)"
- cd controller-testing/ - cd controller-testing/
- makepkg -s -f --cleanbuild --noconfirm - makepkg -s -f --cleanbuild --noconfirm
- name: makepkg-webapp - name: makepkg-webapp
image: serguzim/emgauwa-packager image: serguzim/emgauwa-packager
commands: commands:
- export CFLAGS="-marm -mfpu=vfp -march=armv6zk+fp -mcpu=arm1176jzf-s -mtune=arm1176jzf-s"
- export MAKEFLAGS="-j$(grep -c ^processor /proc/cpuinfo)"
- cd webapp/ - cd webapp/
- makepkg -s -f --cleanbuild --noconfirm - makepkg -s -f --cleanbuild --noconfirm
- name: upload_package - name: upload_package