[antlir] fix oss CI #4443
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push, pull_request, workflow_call] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test: | |
runs-on: | |
labels: 8-core-ubuntu | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: facebook/install-dotslash@latest | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly | |
targets: x86_64-unknown-linux-gnu,aarch64-unknown-linux-gnu | |
- name: BTRFS-ify antlir2-out | |
run: | | |
mkdir antlir2-out | |
truncate -s 100G ${{ runner.temp }}/image.btrfs | |
mkfs.btrfs ${{ runner.temp }}/image.btrfs | |
sudo mount ${{ runner.temp }}/image.btrfs antlir2-out | |
sudo chown -R $(id -u):$(id -g) antlir2-out | |
- name: Install deps | |
run: | | |
sudo apt-get update | |
sudo apt-get install \ | |
cpio jq libcap-dev systemd-container | |
- name: Chown home | |
run: | | |
sudo chown root:root $HOME | |
sudo chmod 777 $HOME | |
- name: Disable watchman | |
run: | | |
echo '[buck2]' >> .buckconfig | |
echo 'file_watcher=notify' >> .buckconfig | |
- name: Test target graph | |
run: | | |
sudo -E $(which dotslash) ./buck2 bxl //ci:test_target_graph.bxl:test_target_graph | |
- name: Find tests | |
run: | | |
sudo -E $(which dotslash) ./buck2 bxl //ci:find_tests.bxl:find_tests -- \ | |
--disable //antlir/antlir2/antlir2_btrfs/... \ | |
--disable //antlir/antlir2/antlir2_cas_dir:antlir2_cas_dir-image-test \ | |
--disable //antlir/antlir2/antlir2_change_stream/... \ | |
--disable //antlir/antlir2/antlir2_overlayfs/... \ | |
--disable //antlir/antlir2/antlir2_vm:antlir2_vm-unittest \ | |
--disable //antlir/antlir2/genrule_in_image/... \ | |
--disable //antlir/antlir2/image_command_alias/... \ | |
--disable //antlir/antlir2/sendstream_parser:sendstream_parser-unittest \ | |
--disable //antlir/antlir2/test_images/cfg/os/... \ | |
--disable //antlir/antlir2/test_images/cfg/target_arch/... \ | |
--disable //antlir/antlir2/test_images/package/... \ | |
--disable //antlir/antlir2/testing/tests:booted-image-test-that-should-fail \ | |
--disable //antlir/antlir2/testing/tests:test-sh-boot-requires_units-centos9 \ | |
--disable //antlir/bzl/shape2/... \ | |
--disable //antlir/bzl/tests/shapes/... \ | |
--disable //antlir/rust:gen-modules-bzl-unittest \ | |
--disable //third-party/antlir/tests:hello_world.default.test \ | |
--disable //third-party/antlir/tests:hello_world.patched.test \ | |
| tee ${{ runner.temp }}/tests.txt | |
- name: Build tests | |
run: | | |
sudo -E $(which dotslash) ./buck2 build --keep-going @${{ runner.temp }}/tests.txt | |
- name: Run tests | |
run: | | |
sudo -E $(which dotslash) ./buck2 test --keep-going @${{ runner.temp }}/tests.txt |