misc: Remove binaries from repo

This commit is contained in:
mintsuki 2021-02-23 01:16:12 +01:00
parent 20055d3e11
commit 7eb22e5c15
8 changed files with 4 additions and 8 deletions

View File

@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Install packages - name: Install packages
run: sudo apt install build-essential gcc-multilib run: sudo apt install build-essential
- name: Build the toolchain - name: Build the toolchain
run: make toolchain run: make toolchain
@ -35,7 +35,7 @@ jobs:
- name: Build limine-install-linux-x86_32 - name: Build limine-install-linux-x86_32
uses: mintsuki/ubuntu-18.04-x86@0.1 uses: mintsuki/ubuntu-18.04-x86@0.1
with: with:
command: make CFLAGS="-m32 -O2 -pipe -static" clean all command: make CFLAGS="-O2 -pipe -static" clean all
- name: Strip limine-install-linux-x86_32 - name: Strip limine-install-linux-x86_32
uses: mintsuki/ubuntu-18.04-x86@0.1 uses: mintsuki/ubuntu-18.04-x86@0.1

5
.gitignore vendored
View File

@ -8,13 +8,10 @@
/**/*.elf /**/*.elf
/**/*.hdd /**/*.hdd
/**/*.iso /**/*.iso
/**/*.sys
/bochsout.txt /bochsout.txt
/bx_enh_dbg.ini /bx_enh_dbg.ini
.vscode .vscode
/limine-install /limine-install
!/limine.bin
!/limine-pxe.bin
!/limine-cd.bin
!/stage2.map
/stivale /stivale
/test_image /test_image

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +0,0 @@
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>

View File

@ -4,7 +4,7 @@ OBJCOPY = i386-elf-objcopy
OBJDUMP = i386-elf-objdump OBJDUMP = i386-elf-objdump
READELF = i386-elf-readelf READELF = i386-elf-readelf
LIMINE_VERSION := $(shell git branch --show-current | sed 's/-branch//') LIMINE_VERSION := $(shell git describe --exact-match --tags `git log -n1 --pretty='%h'` || git log -n1 --pretty='%h')
WERROR = -Werror WERROR = -Werror
CFLAGS = -Os -pipe -Wall -Wextra $(WERROR) CFLAGS = -Os -pipe -Wall -Wextra $(WERROR)