From 7a2748585c80d25e2a207938abbdd8722950de20 Mon Sep 17 00:00:00 2001 From: Andrew Bird Date: Sat, 9 Jan 2021 00:00:25 +0000 Subject: [PATCH] CI: Add Github Action --- .gitattributes | 3 ++- .github/workflows/ci-build.yml | 40 ++++++++++++++++++++++++++++++++++ .travis.yml | 4 ++-- travis_build.sh => ci_build.sh | 4 +++- travis_test.sh => ci_test.sh | 0 5 files changed, 47 insertions(+), 4 deletions(-) create mode 100644 .github/workflows/ci-build.yml rename travis_build.sh => ci_build.sh (81%) rename travis_test.sh => ci_test.sh (100%) diff --git a/.gitattributes b/.gitattributes index 66cc47e..10850e5 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,6 @@ * text eol=crlf *.up -text *.UP -text -travis_*.sh text eol=lf +ci_*.sh text eol=lf .travis.yml text eol=lf +.github/workflows/*.yml text eol=lf diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml new file mode 100644 index 0000000..b68fd4d --- /dev/null +++ b/.github/workflows/ci-build.yml @@ -0,0 +1,40 @@ +name: Build / Test / Upload snapshot + +on: + push: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-20.04 + + steps: + - uses: actions/checkout@v2 + + - name: Package install + run: | + sudo add-apt-repository ppa:tkchia/build-ia16 + sudo apt update + sudo apt install gcc-ia16-elf nasm upx + + - name: build + run: ./ci_build.sh + + - name: test + run: ./ci_test.sh + + - name: make snapshot name + id: snapshotname + run: | + ( + today=`date -u +%F | tr '\n' '-'` + s_sha=`echo -n ${GITHUB_SHA} | cut -c1-8` + printf '::set-output name=fname::snapshot-%s%s\n' $today $s_sha + ) + + - name: upload + uses: actions/upload-artifact@v2 + with: + name: ${{ steps.snapshotname.outputs.fname }} + path: _output/K*.??? diff --git a/.travis.yml b/.travis.yml index ef868b0..56219c9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,10 +16,10 @@ before_install: - echo "before_install" install: - - ./travis_build.sh + - ./ci_build.sh before_script: - echo "before_script" script: - - ./travis_test.sh + - ./ci_test.sh diff --git a/travis_build.sh b/ci_build.sh similarity index 81% rename from travis_build.sh rename to ci_build.sh index 968da9d..45b0664 100755 --- a/travis_build.sh +++ b/ci_build.sh @@ -18,7 +18,7 @@ mv -i bin/KGC*.map bin/KGC*.sys _output/. # Watcom if [ ! -d _watcom ] ; then - [ -f ow-snapshot.tar.gz ] || wget https://github.com/open-watcom/open-watcom-v2/releases/download/Current-build/ow-snapshot.tar.gz + [ -f ow-snapshot.tar.gz ] || wget --quiet https://github.com/open-watcom/open-watcom-v2/releases/download/Current-build/ow-snapshot.tar.gz mkdir _watcom (cd _watcom && tar -xf ../ow-snapshot.tar.gz) @@ -30,3 +30,5 @@ export WATCOM=$TRAVIS_BUILD_DIR/_watcom git clean -x -d -f -e _output -e _watcom -e ow-snapshot.tar.gz make all COMPILER=owlinux mv -i bin/KWC*.map bin/KWC*.sys _output/. + +echo done diff --git a/travis_test.sh b/ci_test.sh similarity index 100% rename from travis_test.sh rename to ci_test.sh