github: purge travis-ci

This commit is contained in:
K. Lange 2020-12-08 22:11:56 +09:00
parent 82a02483f5
commit 035e980e8e
4 changed files with 2 additions and 26 deletions

View File

@ -9,7 +9,7 @@ jobs:
- name: Pull Builder Image
run: docker pull toaruos/build-tools:1.8.x
- name: Run Builder
run: docker run -v ${GITHUB_WORKSPACE}:/root/toaruos -w /root/toaruos -e LANG=C.UTF-8 -t toaruos/build-tools:1.8.x util/build-travis.sh
run: docker run -v ${GITHUB_WORKSPACE}:/root/toaruos -w /root/toaruos -e LANG=C.UTF-8 -t toaruos/build-tools:1.8.x util/build-in-docker.sh
- name: Upload Image
uses: actions/upload-artifact@v2
with:

View File

@ -1,24 +0,0 @@
language: c
script:
- docker run -v `pwd`:/root/toaruos -w /root/toaruos -e LANG=C.UTF-8 -t toaruos/build-tools:1.8.x util/build-travis.sh
sudo: required
dist: trusty
serivces:
- docker
before_install:
- docker pull toaruos/build-tools:1.8.x
notifications:
irc:
channels:
- secure: "YIH2do6BypI1ZiXONyldvW/xt8O2j/PDb3sPzGUwJql08pItH3t3MPN3JHtKEBU7+/yFB58HbA2C8B1gu/oAGs2tqMCFYiapVUYYv5CudvMt+XkBzxgKRFwPcvPtz+lAjVbIM0SXDdlrfjczDGKPnEvCYBIu+ZYlz8dgn5DEVX8="
use_notice: false
skip_join: true
deploy:
provider: releases
api_key:
secure: Lcs5kHe9HAwcVLdm8c0FkAb77U9yzUQdI5PmTU1AnFyHtrPmW1+9d6HeYSPLHm+cPAUdWKqouJNKW7s76Sqhz+4IDcwro7VkbV/fd9NFQCOf9Jb5QScmCZndmYVQUiUmy/7wVqGdy+vatKEsnngctT7aVVhJ5SrWoCPmcttUez8=
file: image.iso
skip_cleanup: true
overwrite: true
on:
tags: true

View File

@ -58,7 +58,7 @@ You can skip the process of building the cross-compiler toolchain (which doesn't
git clone https://github.com/klange/toaruos
cd toaruos
docker pull toaruos/build-tools:1.8.x
docker run -v `pwd`:/root/toaruos -w /root/toaruos -e LANG=C.UTF-8 -t toaruos/build-tools:1.8.x util/build-travis.sh
docker run -v `pwd`:/root/toaruos -w /root/toaruos -e LANG=C.UTF-8 -t toaruos/build-tools:1.8.x util/build-in-docker.sh
After building like this, you can run the various utility targets (`make run`, etc.) by setting `TOOLCHAIN=none`. Try `TOOLCHAIN=none make shell` to run a ToaruOS shell (using QEMU and a network socket - you'll need netcat for this to work).