Skip to content

feat: magic rollback #135

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

Closed
wants to merge 13 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: "Build Packages"
on:
pull_request:
Expand All @@ -23,9 +24,15 @@ jobs:
if: needs.pre-job.outputs.should_skip != 'true'
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- uses: cachix/install-nix-action@v31
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: |
extra-platforms = aarch64-linux i686-linux
- uses: cachix/cachix-action@v16
with:
name: wires
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/pr-preview.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: "PR Preview"
on:
push:
Expand Down Expand Up @@ -35,9 +36,15 @@ jobs:
- uses: actions/checkout@v4
with:
ref: ${{ needs.base-ref.outputs.base-ref }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- uses: cachix/install-nix-action@v31
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: |
extra-platforms = aarch64-linux i686-linux
- uses: cachix/cachix-action@v16
with:
name: wires
Expand Down Expand Up @@ -74,9 +81,15 @@ jobs:
if: needs.eval-head.outputs.drv != needs.eval-base.outputs.drv
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- uses: cachix/install-nix-action@v31
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: |
extra-platforms = aarch64-linux i686-linux
- uses: cachix/cachix-action@v16
with:
name: wires
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: "Test"
on:
pull_request:
Expand Down Expand Up @@ -91,18 +92,18 @@ jobs:
matrix:
test: ${{ fromJSON(needs.find-vm-tests.outputs.tests) }}
steps:
- run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
sudo rm -rf /opt/hostedtoolcache/CodeQL
sudo docker image prune --all --force
- uses: actions/checkout@v4
- name: QEMU static binaries
run: sudo apt-get update && sudo apt-get -y --no-install-recommends install qemu-user-static
- uses: wimpysworld/nothing-but-nix@main

- uses: cachix/install-nix-action@v31
with:
nix_path: nixpkgs=channel:nixos-unstable
enable_kvm: true
extra_nix_config: "system-features = nixos-test benchmark big-parallel kvm"
extra_nix_config: |
system-features = nixos-test benchmark big-parallel kvm
extra-platforms = aarch64-linux i686-linux
- uses: cachix/cachix-action@v16
with:
name: wires
Expand Down
Loading
Loading