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

Handle offsetted Elf segment case + FreeBSD CI #433

Merged
merged 2 commits into from
Aug 18, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
20 changes: 0 additions & 20 deletions .cirrus.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,33 @@ env:
CARGO_TERM_COLOR: always

jobs:
build-freebsd-amd64:
runs-on: macos-latest

strategy:
matrix:
box:
- fbsd_13_0
- fbsd_12_2

steps:
- name: Cache vagrant boxes
id: cache-vagrant-boxes
uses: actions/cache@v2
with:
path: ~/.vagrant.d/
key: ${{ matrix.box }}-vm-cache
- uses: actions/checkout@v2
- name: Set up vagrant
run: |
ln -sf ci/Vagrantfile Vagrantfile
vagrant up ${{ matrix.box }}
- name: Build
run: vagrant ssh ${{ matrix.box }} -- "cd /vagrant; cargo build --verbose"
- name: Test
run: vagrant ssh ${{ matrix.box }} -- "cd /vagrant; cargo test"


build-linux-armv7:
runs-on: [self-hosted, linux, arm]
steps:
Expand Down
184 changes: 144 additions & 40 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading