Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dockerized / ambuildized builds on linux + pulled in community forks for newer breakpad & [TODO] cicd compile #11

Closed
wants to merge 27 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
aedfd27
Update compatibility with newest breakpad
Wend4r Sep 4, 2022
db4faf4
feat: add github ci
maxime1907 Sep 24, 2022
ab34d8a
Merge branch 'asherkin:master' into master
maxime1907 Mar 13, 2023
e3c27fb
Merge pull request #1 from srcdslab/master
sapphonie Jan 24, 2024
b65a497
slowly update to ambuild
sapphonie Jan 24, 2024
93a964d
unignore cicd
sapphonie Jan 24, 2024
202dd32
add gitkeep
sapphonie Jan 24, 2024
c268ae4
update build stuff
sapphonie Jan 24, 2024
06a2a69
update patches - vs2015 patch fails to apply, will fix later if needed
sapphonie Jan 24, 2024
7ab3d1f
update packagescript / ext again
sapphonie Jan 24, 2024
f9f131f
update packagescript to work properly
sapphonie Jan 24, 2024
d6426a1
some general repo cleanup - whack travis, whack appveyor, we're going…
sapphonie Jan 24, 2024
c067908
yet more updates to docker build
sapphonie Jan 24, 2024
3dfc7ca
update gitignore
sapphonie Jan 24, 2024
131426b
update ambuild scripts to not use sdk stuff
sapphonie Jan 24, 2024
3eec7de
update docker build to not use sdk stuff
sapphonie Jan 24, 2024
4c23093
attempt at gh actions #1
sapphonie Jan 24, 2024
f2e8000
ci attmpt # 2
sapphonie Jan 24, 2024
5f84f45
ci attempt 3
sapphonie Jan 24, 2024
d24d2d2
cicd attmpt #4
sapphonie Jan 24, 2024
65298ef
more fixes for compiling properly with upstream
sapphonie Jan 24, 2024
f0857b0
fix breakpad pulling origin/master instead of origin/main (UGH) and a…
sapphonie Jan 24, 2024
d44a83e
Update ci.yml
sapphonie Jan 24, 2024
28e4f0e
fix apt oopsies
sapphonie Jan 24, 2024
425a787
fix ANOTHER apt oopsie
sapphonie Jan 24, 2024
f8ff881
Update ci.yml
sapphonie Jan 24, 2024
9a34c22
Update ci.yml
sapphonie Jan 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
container: debian:11
steps:
- name: Checkout Project
uses: actions/checkout@v1

- name: Run
run: pwd && ls -la && mkdir /accelerator && cp * /accelerator -Rfv ; cd /accelerator && bash ./cicd/_accelerator_docker_build_internal.sh

- name: Zip packages
run: |
pwd
ls -la
cd /accelerator
apt-get update
apt-get install p7zip-full -y
cd build
7za a -r accelerator.zip package/
ls -la
pwd
cd ../

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: accelerator
path: |
/accelerator/build/accelerator.zip
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/build
/extension/version_auto.h
/breakpad

# Virtual env
.venv
venv


/_am_temp
!/cicd
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

Loading