• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

M68000 emulation engine for Virtual X68000.


Commit MetaInfo

Revisão08650f4f0a64d712c7fadee05d1fcc2dfd013723 (tree)
Hora2020-03-07 16:36:35
AutorKaz Nishimura <kazssym@linu...>
CommiterKaz Nishimura

Mensagem de Log

Build directly in the source directory

Mudança Sumário

Diff

diff -r d2cfdee9be10 -r 08650f4f0a64 azure-pipelines.yml
--- a/azure-pipelines.yml Sat Mar 07 16:33:46 2020 +0900
+++ b/azure-pipelines.yml Sat Mar 07 16:36:35 2020 +0900
@@ -37,21 +37,17 @@
3737 autoreconf --install
3838 displayName: Bootstrap
3939 - bash: |
40- mkdir -p _build
41- cd _build
42- ../configure --disable-static
40+ ./configure --disable-static
4341 displayName: Configure
4442 - bash: |
45- cd _build
4643 make check
4744 displayName: Build
4845 - task: PublishTestResults@2
4946 condition: succeededOrFailed()
5047 - bash: |
51- cd _build
5248 make VERSION='$(package.version)' dist || exit $?
53- mkdir -p ../dist
54- mv -f 'libvm68k-$(package.version)'.* ../dist
49+ mkdir -p dist
50+ mv -f 'libvm68k-$(package.version)'.* dist/
5551 displayName: Make source archive
5652 - publish: dist
5753 artifact: dist