diff --git a/.circleci/config.yml b/.circleci/config.yml index 6ababfea..d8ae66c6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,10 +1,10 @@ version: 2 jobs: - build: - docker: - - image: registry.gitlab.com/nullworks/cathook-ci-docker/ubuntu-cat-dependencies:build - steps: - - checkout - - run: - name: compile-cathook - script: "git submodule update --init --recursive; mkdir build; cd build; cmake ..; make; cd .." + compile_cathook: + docker: + - image: registry.gitlab.com/nullworks/cathook-ci-docker/ubuntu-cat-dependencies:build + steps: + - checkout + - run: + name: "Compiling cathook" + command: git submodule update --init --recursive; mkdir build; cd build; cmake ..; make; cd ..