diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index e33729b..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,58 +0,0 @@ -name: Build - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -env: - CARGO_TERM_COLOR: always - -jobs: - - build: - runs-on: ubuntu-18.04 - steps: - # With rustup's nice new toml format, we just need to run rustup show to install the toolchain - # https://github.com/actions-rs/toolchain/issues/126#issuecomment-782989659 - - name: Setup Rust toolchain - run: rustup show - - - name: Install llvm-10 - run: sudo apt-get install llvm-10 clang-10 - - - uses: actions/checkout@v2 - with: - submodules: 'true' - - - name: cargo build - run: cargo build --release - - - name: Upload Artifact - uses: actions/upload-artifact@v2 - with: - name: integritee-node - path: target/release/integritee-node - - build-skip-ais-check: - runs-on: ubuntu-18.04 - steps: - - name: Setup Rust toolchain - run: rustup show - - - name: Install llvm-10 - run: sudo apt-get install llvm-10 clang-10 - - - uses: actions/checkout@v2 - with: - submodules: 'true' - - - name: cargo build - run: cargo build --release --features skip-ias-check - - - name: Upload Artifact - uses: actions/upload-artifact@v2 - with: - name: integritee-node-skip-ias-check - path: target/release/integritee-node \ No newline at end of file