diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..9475b24 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,12 @@ +on: [push] + +jobs: + build_and_test: + name: Rust project + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - run: cargo build --release --all-features \ No newline at end of file diff --git a/.idea/jenkinsSettings.xml b/.idea/jenkinsSettings.xml new file mode 100644 index 0000000..3d58c3e --- /dev/null +++ b/.idea/jenkinsSettings.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index b0c657d..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,16 +0,0 @@ -pipeline { - agent any - stages { - stage('Build') { - steps { - echo "Build start." - } - - post { - always { - echo "Build end." - } - } - } - } -} \ No newline at end of file